Stop ssh and mdadm in bailout
[grml-debootstrap.git] / grml-debootstrap
index de5a94a..674a3ad 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: Mon Apr 09 15:22:07 CEST 2007 [mika]
+# Latest change: Mon Apr 09 15:34:02 CEST 2007 [mika]
 ################################################################################
 # http://www.debian.org/releases/stable/i386/index.html.en
 
@@ -60,6 +60,8 @@ bailout(){
   # make sure $TARGET is not mounted when exiting grml-debootstrap
   if [ -n "$TARGET" ] ; then
      if grep -q $TARGET /proc/mounts ; then
+        [ -x "$TARGET"/etc/init.d/ssh   ] && "$TARGET"/etc/init.d/ssh stop
+        [ -x "$TARGET"/etc/init.d/mdadm ] && "$TARGET"/etc/init.d/mdadm stop
         echo "Unmounting $TARGET"
         umount "$TARGET"
      fi
@@ -237,7 +239,9 @@ if [ "$FSCK" = 'yes' ] ; then
    stage fscktool done
 fi
 
-einfo "All stages have been executed, to rerun grml-debootstrap please manually remove ${STAGES}."
+# finally remove stages on main system so grml-deboostrap can be reexecuted
+  rm -rf "$STAGES"
+
 einfo "Finished execution of $0 - enjoy your Debian system." ; eend 0
 
 ## END OF FILE #################################################################