xref: /illumos-gate/usr/src/cmd/hal/tools/sunos/hal-system-power-shutdown-sunos.sh (revision d583b39bfb4e2571d3e41097c5c357ffe353ad45)
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