From 2e9baa8f971a089db7c87bb134dbf62ddd03f607 Mon Sep 17 00:00:00 2001 From: Dinko Korunic Date: Thu, 28 Apr 2011 16:35:47 +0200 Subject: [PATCH] - jos detekcije braindead situacija u upgradeu grub1 na grub2 --- debian/postinst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/debian/postinst b/debian/postinst index 7e217c4..1ff9d57 100755 --- a/debian/postinst +++ b/debian/postinst @@ -220,6 +220,13 @@ if [ "x$GRUB2" = "xno" ]; then if [ -f "$device_map" ]; then mv -f "$device_map" "$device_map.old" fi + # possible situation when upgrading from Grub1 to Grub2 + if [ ! -x /usr/sbin/grub ]; then + echo "." + echo "CN: FATAL ERROR while trying to execute GRUB1!" + echo "CN: Do not reboot your server and report this to OTRS immediately!" + exit 1 + fi grub --batch --no-floppy --device-map="$device_map" <<'EOF' >/dev/null 2>&1 quit EOF -- 1.7.10.4