power_button revision 1.1
11.1Sthorpej#!/bin/sh -
21.1Sthorpej#
31.1Sthorpej#	$NetBSD: power_button,v 1.1 2003/04/18 05:40:06 thorpej Exp $
41.1Sthorpej#
51.1Sthorpej# Generic script for power button events.  We simply attempt to
61.1Sthorpej# shut the system down gracefully, and let the kernel handle
71.1Sthorpej# the poweroff.
81.1Sthorpej#
91.1Sthorpej# Arguments passed by powerd(8):
101.1Sthorpej#
111.1Sthorpej#	device event
121.1Sthorpej
131.1Sthorpejcase "${2}" in
141.1Sthorpejpressed)
151.1Sthorpej	/sbin/shutdown -p now
161.1Sthorpej	exit 0
171.1Sthorpej	;;
181.1Sthorpej
191.1Sthorpej*)
201.1Sthorpej	echo "${0}: unsupported event ${2} on device ${1}" >&1
211.1Sthorpej	exit 1
221.1Sthorpej	;;
231.1Sthorpejesac
24