#! /bin/sh
# /etc/init.d/halt: executed by init(8) upon entering runlevel 0 (halt).
# $Id: halt,v 1.8 1996/02/29 13:24:12 miquels Exp $
#
# Adapted from a script by Miquel van Smoorenburg.

PATH="/sbin:/bin:/usr/sbin:/usr/bin"

# Kill all processes.
echo -n "Sending all processes the TERM signal... "
killall5 -15
echo "done."
sleep 5
echo -n "Sending all processes the KILL signal... "
killall5 -9
echo "done."

# Write a reboot record to /var/log/wtmp.
halt -w

echo -n "Deactivating swap... "
swapoff -a
echo "done."

echo -n "Unmounting file systems... "
umount -a
echo "done."

mount -n -o remount,ro /

# The kernel will say "halted" if it is fairly recent.
# echo "The system is halted."
halt -d -f
