Home | History | Annotate | Line # | Download | only in scripts
reset_button revision 1.1
      1  1.1  thorpej #!/bin/sh -
      2  1.1  thorpej #
      3  1.1  thorpej #	$NetBSD: reset_button,v 1.1 2003/04/20 20:55:40 thorpej Exp $
      4  1.1  thorpej #
      5  1.1  thorpej # Generic script for reset button events.  We simply attempt to
      6  1.1  thorpej # reboot the system gracefully.
      7  1.1  thorpej #
      8  1.1  thorpej # Arguments passed by powerd(8):
      9  1.1  thorpej #
     10  1.1  thorpej #	device event
     11  1.1  thorpej 
     12  1.1  thorpej case "${2}" in
     13  1.1  thorpej pressed)
     14  1.1  thorpej 	/sbin/shutdown -r now
     15  1.1  thorpej 	exit 0
     16  1.1  thorpej 	;;
     17  1.1  thorpej 
     18  1.1  thorpej *)
     19  1.1  thorpej 	echo "${0}: unsupported event ${2} on device ${1}" >&1
     20  1.1  thorpej 	exit 1
     21  1.1  thorpej 	;;
     22  1.1  thorpej esac
     23