Stop ssh and mdadm in bailout
authorMichael Prokop <mika@grml.org>
Mon, 9 Apr 2007 13:38:12 +0000 (15:38 +0200)
committerMichael Prokop <mika@grml.org>
Mon, 9 Apr 2007 13:38:12 +0000 (15:38 +0200)
grml-debootstrap

index 009b7e6..674a3ad 100644 (file)
@@ -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