8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / cmd / hal / tools / sunos / hal-system-power-shutdown-sunos.sh
blob311e8475e760491a72dacdc5a4b6f2a0d6e36c06
1 #!/bin/sh
3 # hal-system-power-shutdown-sunos.sh
5 # Licensed under the Academic Free License version 2.1
8 unsupported() {
9 echo "org.freedesktop.Hal.Device.SystemPowerManagement.NotSupported" >&2
10 echo "No shutdown command found" >&2
11 exit 1
14 if [ -x "/sbin/init" ] ; then
15 /sbin/init 5
16 exit $?
17 else
18 unsupported