From: Dinko Korunic Date: Thu, 28 Apr 2011 14:35:47 +0000 (+0200) Subject: - jos detekcije braindead situacija u upgradeu grub1 na grub2 X-Git-Tag: v2.6.32.1^0 X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=kernel-cn.git;a=commitdiff_plain;h=2e9baa8f971a089db7c87bb134dbf62ddd03f607 - jos detekcije braindead situacija u upgradeu grub1 na grub2 --- 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