Files
bpfire/config/install/halt
2007-01-24 19:13:45 +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