X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=blobdiff_plain;f=grml-debootstrap;h=9b0574ce1bba67b136dbc28517b5974a8e135b4d;hp=8473abf7848fbeeef3897b5be0107536c7d3e99a;hb=a33020b8087c2663ec37835fb47a0039ea6a41c1;hpb=a64dc69b9715e387d5d760c567eefd08c6f3cfce diff --git a/grml-debootstrap b/grml-debootstrap index 8473abf..9b0574c 100644 --- a/grml-debootstrap +++ b/grml-debootstrap @@ -4,7 +4,7 @@ # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Don Apr 12 11:55:21 CEST 2007 [mika] +# Latest change: Mon Apr 16 13:21:01 CEST 2007 [mika] ################################################################################ # http://www.debian.org/releases/stable/i386/index.html.en @@ -110,18 +110,18 @@ fi # we want to exit smoothly and clean: bailout(){ # make sure $TARGET is not mounted when exiting grml-debootstrap - if [ -n "$TARGET" ] ; then - if grep -q $TARGET /proc/mounts ; then + if [ -n "$MNTPOINT" ] ; then + if grep -q $MNTPOINT /proc/mounts ; then # make sure nothing is left inside chroot so we can unmount it - [ -x "$TARGET"/etc/init.d/ssh ] && "$TARGET"/etc/init.d/ssh stop - [ -x "$TARGET"/etc/init.d/mdadm ] && "$TARGET"/etc/init.d/mdadm stop - chroot "$TARGET" umount /sys 1>/dev/null 2>&1 - chroot "$TARGET" umount /proc 1>/dev/null 2>&1 - echo "Unmounting $TARGET" - umount "$TARGET" + [ -x "$MNTPOINT"/etc/init.d/ssh ] && "$MNTPOINT"/etc/init.d/ssh stop + [ -x "$MNTPOINT"/etc/init.d/mdadm ] && "$MNTPOINT"/etc/init.d/mdadm stop + [ -x "$MNTPOINT"/bin/umount ] && chroot "$MNTPOINT" umount /sys + [ -x "$MNTPOINT"/bin/umount ] && chroot "$MNTPOINT" umount /proc + echo "Unmounting $MNTPOINT" ; umount "$MNTPOINT" fi fi [ -n "$1" ] && EXIT="$1" || EXIT="1" + [ -n "$3" ] && einfo "Notice: just remove $STAGES/$3 to reexecute the stage" exit "$EXIT" } trap bailout 1 2 3 15 @@ -231,9 +231,17 @@ preparechroot() { # execute chroot-script {{{ chrootscript() { - einfo "Executing chroot-script now" - chroot "$MNTPOINT" /bin/chroot-script - eend $? + if ! [ -r "$MNTPOINT/bin/chroot-script" ] ; then + mount_target + fi + if [ -x "$MNTPOINT/bin/chroot-script" ] ; then + einfo "Executing chroot-script now" + chroot "$MNTPOINT" /bin/chroot-script + eend $? + else + eerror "Fatal: $MNTPOINT/bin/chroot-script could not be found." + eend 1 + fi } # }}} @@ -274,7 +282,7 @@ fscktool() { for i in mkfs tunefs mount_target debootstrap_system preparechroot \ chrootscript grub_install umount_chroot fscktool ; do if stage $i ; then - $i && stage $i done || bailout + $i && stage $i done || bailout 2 "i" fi done # }}}