mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-10 11:11:40 +01:00
21 lines
299 B
Plaintext
21 lines
299 B
Plaintext
#!/sbin/runscript
|
|
|
|
depend() {
|
|
need dev localmount
|
|
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 $?
|
|
}
|
|
|