1*d2ec54f7Sphitran#!/bin/sh 2*d2ec54f7Sphitran# 3*d2ec54f7Sphitran# hal-system-power-shutdown-sunos.sh 4*d2ec54f7Sphitran# 5*d2ec54f7Sphitran# Licensed under the Academic Free License version 2.1 6*d2ec54f7Sphitran# 7*d2ec54f7Sphitran 8*d2ec54f7Sphitranunsupported() { 9*d2ec54f7Sphitran echo "org.freedesktop.Hal.Device.SystemPowerManagement.NotSupported" >&2 10*d2ec54f7Sphitran echo "No shutdown command found" >&2 11*d2ec54f7Sphitran exit 1 12*d2ec54f7Sphitran} 13*d2ec54f7Sphitran 14*d2ec54f7Sphitranif [ -x "/sbin/init" ] ; then 15*d2ec54f7Sphitran /sbin/init 5 16*d2ec54f7Sphitran exit $? 17*d2ec54f7Sphitranelse 18*d2ec54f7Sphitran unsupported 19*d2ec54f7Sphitranfi 20