]> sourceware.org Git - lvm2.git/commitdiff
Fix lvmdump metadata gather option (-m) to work correctly. (Jaroslav Stava)
authorMilan Broz <mbroz@redhat.com>
Thu, 28 Aug 2008 10:40:44 +0000 (10:40 +0000)
committerMilan Broz <mbroz@redhat.com>
Thu, 28 Aug 2008 10:40:44 +0000 (10:40 +0000)
WHATS_NEW
scripts/lvm_dump.sh

index c58f609033435c77197ad74b5d3340d30b7fc499..f007673dd13ce4e05c05623ad1df295a1b8442a3 100644 (file)
--- a/WHATS_NEW
+++ b/WHATS_NEW
@@ -1,5 +1,6 @@
 Version 2.02.40 - 
 ================================
+  Fix lvmdump metadata gather option (-m) to work correctly.
   Fix allocation bug in text metadata format write error path.
   Fix vgcfgbackup to properly check filename if template is used.
   configure aborts if lcov or genhtml are missing with --enable-profiling
index dac9634eea7b63ae41076afcad27582fb08fcfb0..f13f648c7696c0468f36e85f9dc10a63661b7bf2 100755 (executable)
@@ -206,7 +206,7 @@ if (( $metadata )); then
 
        pvs="$("$LVM" pvs --separator , --noheadings --units s --nosuffix -o \
            name,pe_start 2>> "$log" | $SED -e 's/^ *//')"
-       for line in "$pvs"
+       for line in $pvs
        do
                test -z "$line" && continue
                pv="$(echo $line | $CUT -d, -f1)"
This page took 0.038663 seconds and 5 git commands to generate.