Files
bpfire/config/install/halt
casemaster 3b83beb30e Warteschleife entfernt.
git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@680 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
2007-07-12 22:57:26 +00:00

22 lines
411 B
Bash

#!/bin/sh
# Clear screen
/bin/clear
echo "Shutting down..."
echo "Sending all processes the TERM signal..."
/bin/killall5 -15
sleep 3
echo "Sending all processes the KILL signal..."
/bin/killall5 -9
sleep 3
echo "Unmounting filesystems"
/bin/umount /tmp
/bin/umount /sys
/bin/umount /dev/pts
/bin/umount /dev
/bin/umount /root
/bin/umount /proc
echo "Unmounting root"
/bin/mount -n -o remount,ro /
/bin/reboot