home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / live / etc / init.d / halt < prev    next >
Text File  |  1998-05-19  |  281b  |  17 lines

  1. #! /bin/sh
  2. #
  3. # halt        Execute the halt command.
  4. #
  5. # Version:      @(#)halt  2.75  19-May-1998  miquels@cistron.nl
  6. #
  7.  
  8. PATH=/sbin:/bin:/usr/sbin:/usr/bin
  9.  
  10. # See if we need to cut the power.
  11. if [ -x /etc/init.d/ups-monitor ]
  12. then
  13.     /etc/init.d/ups-monitor poweroff
  14. fi
  15.  
  16. halt -d -f -i -p
  17.