home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / share / hal / scripts / hal-system-power-shutdown < prev    next >
Encoding:
Text File  |  2006-08-30  |  335 b   |  19 lines

  1. #!/bin/sh
  2.  
  3. unsupported() {
  4.     echo "org.freedesktop.Hal.Device.SystemPowerManagement.NotSupported" >&2
  5.     echo "No shutdown command found" >&2
  6.     exit 1
  7. }
  8.  
  9. #Try for common tools
  10. if [ -x "/sbin/shutdown" ] ; then
  11.     /sbin/shutdown -h now
  12.     exit $?
  13. elif [ -x "/usr/sbin/shutdown" ] ; then
  14.     /usr/sbin/shutdown -h now
  15.     exit $?
  16. else
  17.     unsupported
  18. fi
  19.