NetBSD/etc/powerd/scripts/lid_switch

17 lines
295 B
Bash
Executable File

#!/bin/sh -
#
# $NetBSD: lid_switch,v 1.2 2003/10/30 17:42:23 mycroft Exp $
#
# Generic script for lid switch events. We do nothing for now.
#
# Arguments passed by powerd(8):
#
# device event
case "${2}" in
*)
logger -p warning "${0}: unsupported event ${2} on device ${1}"
exit 1
;;
esac