Fix grub-install usage, update devices.tar.gz
authorMichael Prokop <devnull@localhost>
Fri, 29 Aug 2008 09:31:30 +0000 (11:31 +0200)
committerMichael Prokop <devnull@localhost>
Fri, 29 Aug 2008 09:31:30 +0000 (11:31 +0200)
devices.tar.gz
grml-debootstrap

index 07dd1cf..0d02e40 100644 (file)
Binary files a/devices.tar.gz and b/devices.tar.gz differ
index 5f2744d..db2c6e8 100755 (executable)
@@ -739,13 +739,13 @@ grub_install() {
      for device in $SELECTED_PARTITIONS ; do
         GRUB=$(grubdevice $device)
         einfo "Installing grub on ${GRUB}:"
-        [ -x /usr/sbin/grub-install ] && GRUBINSTALL=/usr/sbin/grub-install --no-floppy || GRUBINSTALL=/sbin/grub-install
+        [ -x /usr/sbin/grub-install ] && GRUBINSTALL="/usr/sbin/grub-install --no-floppy" || GRUBINSTALL="/sbin/grub-install --no-floppy"
         $GRUBINSTALL --root-directory="$MNTPOINT" "(${GRUB})"
         eend $?
      done
   else
      einfo "Installing grub on ${GRUB}:"
-     [ -x /usr/sbin/grub-install ] && GRUBINSTALL=/usr/sbin/grub-install --no-floppy || GRUBINSTALL=/sbin/grub-install
+     [ -x /usr/sbin/grub-install ] && GRUBINSTALL="/usr/sbin/grub-install --no-floppy" || GRUBINSTALL="/sbin/grub-install --no-floppy"
      $GRUBINSTALL --root-directory="$MNTPOINT" "(${GRUB})"
      eend $?
   fi