From 1c9d91b63cb399fe2cd5ef8e4bb51a1aa0e6a696 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Sun, 11 Aug 2013 13:13:19 +0200 Subject: [PATCH] Make reportbug script file robust against su authentication failures and missing LVM commands. --- debian/bug-script | 2 +- debian/changelog | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/bug-script b/debian/bug-script index f5e9f06b5..5c4ec7ee8 100755 --- a/debian/bug-script +++ b/debian/bug-script @@ -44,7 +44,7 @@ yesno "Do you want to provide LVM volume information?" nop if [ "$REPLY" = yep ]; then echo >&3 echo "*********************** BEGIN LVM" >&3 - su root -c "vgdisplay; pvdisplay; lvdisplay" >&3 + su root -c "vgdisplay; pvdisplay; lvdisplay" >&3 || true echo "*********************** END LVM" >&3 fi diff --git a/debian/changelog b/debian/changelog index de3d092a0..33afb489e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +grub2 (2.00-16) UNRELEASED; urgency=low + + * Make reportbug script file robust against su authentication failures and + missing LVM commands. + + -- Colin Watson Sun, 11 Aug 2013 12:12:54 +0100 + grub2 (2.00-15) unstable; urgency=low [ Colin Watson ]