1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#!/sbin/runscript depend() { need dev after hwdrivers modules } start() { ebegin "Starting busybox acpid" start-stop-daemon --start --exec /sbin/acpid \ -- $ACPID_OPTS eend $? } stop () { ebegin "Stopping busybox acpid" start-stop-daemon --stop --exec /sbin/acpid eend $? }