meta-digi/meta-digi-dey/recipes-core/busybox/busybox-1.21.1/busybox-acpid

40 lines
714 B
Bash

#!/bin/sh
DAEMON=/sbin/acpid
NAME=acpid
DESC="Busybox ACPI daemon."
ARGS="-M /etc/acpi/acpid.map"
test -f $DAEMON || exit 0
set -e
case "$1" in
start)
echo -n "starting $DESC: $NAME... "
start-stop-daemon -S -b -n $NAME -a $DAEMON -- $ARGS
echo "done."
;;
stop)
echo -n "stopping $DESC: $NAME... "
start-stop-daemon -K -n $NAME
echo "done."
;;
restart)
echo -n "restarting $DESC: $NAME... "
$0 stop
$0 start
echo "done."
;;
reload)
echo -n "reloading $DESC: $NAME... "
killall -HUP $(basename ${DAEMON})
echo "done."
;;
*)
echo "Usage: $0 {start|stop|restart|reload}"
exit 1
;;
esac
exit 0