hal-system-power-shutdown-sunos.sh revision d2ec54f7875f7e05edd56195adbeb593c947763f
#!/bin/sh
#
# hal-system-power-shutdown-sunos.sh
#
# Licensed under the Academic Free License version 2.1
#
unsupported() {
echo "org.freedesktop.Hal.Device.SystemPowerManagement.NotSupported" >&2
echo "No shutdown command found" >&2
exit 1
}
if [ -x "/sbin/init" ] ; then
/sbin/init 5
exit $?
else
unsupported
fi