blob: 311e8475e760491a72dacdc5a4b6f2a0d6e36c06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/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
|