home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 March / CMCD0305.ISO / LINUX / smoothwall / smoothwall-2.0-manuals.iso / images / bootcdrom-2.0.img / INITRD.IMG / installrootimage / etc / halt < prev    next >
Encoding:
Text File  |  2003-12-08  |  479 b   |  19 lines

  1. #!/bin/sh
  2. echo "Shutting down..."
  3. echo "Sending all processes the TERM signal..." 
  4. /sbin/killall5 -15
  5. sleep 3
  6. echo "Sending all processes the KILL signal..."
  7. /sbin/killall5 -9
  8. sleep 3
  9. echo "Unmounting /cdrom, /harddisk/boot, /harddisk/var/log and /harddisk"
  10. /sbin/umount /cdrom
  11. /sbin/umount /harddisk/boot
  12. /sbin/umount /harddisk/var/log
  13. /sbin/umount /harddisk
  14. echo "Unmounting /proc"
  15. /sbin/umount /proc
  16. echo "Unmounting root"
  17. /sbin/mount -n -o remount,ro /
  18. /sbin/reboot -i -d -p
  19.