blob: f41dd563087033d56d185d5cd3134010c564ae7c (
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-reboot-sunos.sh
#
# Licensed under the Academic Free License version 2.1
#
unsupported() {
echo "org.freedesktop.Hal.Device.SystemPowerManagement.NotSupported" >&2
echo "No reboot command found" >&2
exit 1
}
if [ -x "/sbin/init" ] ; then
/sbin/init 6
exit $?
else
unsupported
fi
|