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