From: Evan Broder Date: Sun, 9 Nov 2008 04:34:30 +0000 (-0500) Subject: Don't detect guests' VGs in the hosts X-Git-Tag: 0.0.4^0 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-cluster-config.git/commitdiff_plain/18f2c32e70e27ac660374cabfd1498d8bc0b6289 Don't detect guests' VGs in the hosts svn path=/trunk/packages/invirt-cluster-config/; revision=1567 --- diff --git a/debian/changelog b/debian/changelog index f238f46..b88672c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +invirt-cluster-config (0.0.4) unstable; urgency=low + + * Ignore detecting VGs on guests by not scanning any block device nodes + in /dev/mapper/xenvg-* + + -- Evan Broder Sat, 08 Nov 2008 23:34:06 -0500 + invirt-cluster-config (0.0.3) unstable; urgency=low * Punt the postinst - it causes more trouble than anything else diff --git a/debian/transform_lvm.conf.invirt b/debian/transform_lvm.conf.invirt index 33f9214..f0c866c 100755 --- a/debian/transform_lvm.conf.invirt +++ b/debian/transform_lvm.conf.invirt @@ -1,4 +1,5 @@ #!/usr/bin/perl -0p +s#^( *filter) = .*#$1 = [ "r|/dev/mapper/xenvg-.*|" ]#m or die; s/^( *locking_type) = 1.*$/$1 = 2/m or die; s/^( *fallback_to_clustered_locking) = .*$/$1 = 0/m or die; s/^( *fallback_to_local_locking) = .*$/$1 = 0/m or die;