diff options
author | maximilian attems <maks@debian.org> | 2006-02-28 17:40:38 +0100 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2006-02-28 17:40:38 +0100 |
commit | d6bcfac2500607902f76bcead5517e8ae80f5d01 (patch) | |
tree | 0ce7d2d5fab55299d0f4c39f9515df1c0c874b8c | |
parent | 75b6694d4359db60f73416d1fe0c9e5bfb3ba812 (diff) | |
download | initramfs-tools-d6bcfac2500607902f76bcead5517e8ae80f5d01.tar.gz initramfs-tools-d6bcfac2500607902f76bcead5517e8ae80f5d01.zip |
don't stumble on lvm10 leftovers, explicitly check for lvm2
-rw-r--r-- | debian/changelog | 7 | ||||
-rwxr-xr-x | hooks/lvm | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index b4cbb08..3ccc474 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +initramfs-tools (0.54) unstable; urgency=low + + * hooks/lvm: lvm10 has also an vgchange - exit if no lvm2 libs. + (closes: #354708) + + -- maximilian attems <maks@sternwelten.at> Tue, 28 Feb 2006 17:34:14 +0100 + initramfs-tools (0.53) unstable; urgency=high * update-initramfs: set_current_version needs to check against @@ -14,7 +14,7 @@ prereqs) ;; esac -if [ ! -x /sbin/vgchange ]; then +if [ ! -x /sbin/vgchange -a ! -d /lib/lvm-200 ]; then exit 0 fi |