summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlasdair Kergon <agk@redhat.com>2006-11-21 17:44:46 +0000
committerAlasdair Kergon <agk@redhat.com>2006-11-21 17:44:46 +0000
commit8387016eef79597b2f007512792e6ac7c95dad2b (patch)
treee8e52239ab267fe37ad6d22975e06a6ff8a4e2d3
parent4e1342b641bc4787193182c5e5eb0bd03d2bc511 (diff)
downloadlvm2-old-v2_02_15.tar.gz
Fix clvmd_init_rhel4 line truncation (2.02.14).v2_02_15old-v2_02_15
-rw-r--r--WHATS_NEW3
-rw-r--r--scripts/clvmd_init_rhel42
2 files changed, 3 insertions, 2 deletions
diff --git a/WHATS_NEW b/WHATS_NEW
index be5ae9585..84572bf91 100644
--- a/WHATS_NEW
+++ b/WHATS_NEW
@@ -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.
diff --git a/scripts/clvmd_init_rhel4 b/scripts/clvmd_init_rhel4
index 3120520ac..0debc19ec 100644
--- a/scripts/clvmd_init_rhel4
+++ b/scripts/clvmd_init_rhel4
@@ -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