- jos detekcije braindead situacija u upgradeu grub1 na grub2 squeeze v2.6.32.1
authorDinko Korunic <kreator@carnet.hr>
Thu, 28 Apr 2011 14:35:47 +0000 (16:35 +0200)
committerDinko Korunic <kreator@carnet.hr>
Thu, 28 Apr 2011 14:35:47 +0000 (16:35 +0200)
debian/postinst

index 7e217c4..1ff9d57 100755 (executable)
@@ -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