From: Michael Prokop Date: Mon, 9 Apr 2007 13:38:12 +0000 (+0200) Subject: Stop ssh and mdadm in bailout X-Git-Tag: 0.6~9 X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=commitdiff_plain;h=53dbb758a32f7453d42ffe54aeab764f23ae12f0;hp=90384ea15c26d7647bdfbe11d4377e46e112307a Stop ssh and mdadm in bailout --- diff --git a/grml-debootstrap b/grml-debootstrap index 009b7e6..674a3ad 100644 --- a/grml-debootstrap +++ b/grml-debootstrap @@ -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