mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-13 14:25:12 -04:00
20 lines
420 B
Bash
Executable File
20 lines
420 B
Bash
Executable File
#!/bin/sh
|
|
# $NetBSD: hal-system-power-shutdown-netbsd,v 1.1 2008/11/27 03:32:19 jmcneill Exp $
|
|
|
|
unsupported() {
|
|
echo "org.freedesktop.Hal.Device.SystemPowerManagement.NotSupported" >&2
|
|
echo "No shutdown command found" >&2
|
|
exit 1
|
|
}
|
|
|
|
#Try for common tools
|
|
if [ -x "/sbin/shutdown" ] ; then
|
|
/sbin/shutdown -p now
|
|
exit $?
|
|
elif [ -x "/usr/sbin/shutdown" ] ; then
|
|
/usr/sbin/shutdown -p now
|
|
exit $?
|
|
else
|
|
unsupported
|
|
fi
|