Path : /usr/lib/hal/scripts/linux/ |
Current File : //usr/lib/hal/scripts/linux/hal-system-power-shutdown-linux |
#!/bin/sh unsupported() { echo "org.freedesktop.Hal.Device.SystemPowerManagement.NotSupported" >&2 echo "No shutdown command found" >&2 exit 1 } #Try for common tools if [ -x "/sbin/shutdown" ] ; then /sbin/shutdown -h now exit $? elif [ -x "/usr/sbin/shutdown" ] ; then /usr/sbin/shutdown -h now exit $? else unsupported fi