#!/bin/sh
#
# acpid.service - acpid(8) service file
#

case $1 in
start)
	/usr/sbin/acpid
	;;
stop)	killall -q /usr/sbin/acpid
	;;
*)
	echo "usage: $0 start|stop"
esac

# EOF

