1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Fix clvmd_init_rhel4 line truncation (2.02.14).

This commit is contained in:
Alasdair Kergon 2006-11-21 17:44:46 +00:00
parent 9ce2c9bfc1
commit efecd5c15b
2 changed files with 3 additions and 2 deletions

View File

@ -1,8 +1,9 @@
Version 2.02.16 -
====================================
Version 2.02.15 - 20th November 2006
Version 2.02.15 - 21st November 2006
====================================
Fix clvmd_init_rhel4 line truncation (2.02.14).
Install lvmdump by default.
Fix check for snapshot module when activating snapshot.
Fix pvremove error path for case when PV is in use.

View File

@ -73,7 +73,7 @@ stop()
done
else
# Hack to only deactivate clustered volumes
clustervgs=`$VGDISPLAY 2> /dev/null | awk 'BEGIN {RS="VG Name"} {if (/Clustered/) print $1;}'
clustervgs=`$VGDISPLAY 2> /dev/null | awk 'BEGIN {RS="VG Name"} {if (/Clustered/) print $1;}'`
for vg in $clustervgs; do
if ! action "Deactivating VG $vg:" $VGCHANGE -anl $vg
then