check for uid 0 and support -v/-h option on cmdline
[grml-debootstrap.git] / chroot-script
index 1ce5ac7..aa46874 100644 (file)
@@ -4,7 +4,7 @@
 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
 # Bug-Reports:   see http://grml.org/bugs/
 # License:       This file is licensed under the GPL v2.
-# Latest change: Fre Nov 03 15:14:28 CET 2006 [mika]
+# Latest change: Fre Nov 03 17:15:42 CET 2006 [mika]
 ################################################################################
 
 set -e # exit on any error
@@ -17,6 +17,10 @@ if [ -n "$CHROOTMIRROR" ] ; then
    echo "$CHROOTMIRROR" > /etc/apt/sources.list
 fi
 
+# if ! [ -n /etc/kernel-img.conf ] ; then
+#   echo "do_initrd = Yes" > /etc/kernel-img.conf
+# fi
+
 # install additional packages
 if [ "$PACKAGES" = 'yes' ] ; then
    if ! [ -r /etc/debootstrap/packages ] ; then
@@ -108,6 +112,13 @@ if [ -n "$GROOT" ] ; then
    sed -i "s/^savedefault.*/# &/g" /boot/grub/menu.lst
    update-grub -y
 
+   if [ -z "$MBR" ] ; then
+      echo "Notice: \$MBR not set, not install grub therefore."
+   else
+      cp /proc/mounts /etc/mtab
+      grub-install "$MBR"
+      rm /etc/mtab
+   fi
 fi
 
 # unmount all filesystems in chroot, make sure nothing is left...