xref: /titanic_41/usr/src/cmd/hal/tools/sunos/hal-system-power-shutdown-sunos.sh (revision 43b9c05035ac59f7f7a8e7827598db5a15f30ed3)
1#!/bin/sh
2#
3# hal-system-power-shutdown-sunos.sh
4#
5# Licensed under the Academic Free License version 2.1
6#
7
8unsupported() {
9	echo "org.freedesktop.Hal.Device.SystemPowerManagement.NotSupported" >&2
10	echo "No shutdown command found" >&2
11	exit 1
12}
13
14if [ -x "/sbin/init" ] ; then
15	/sbin/init 5
16	exit $?
17else
18	unsupported
19fi
20