mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-20 01:26:38 +02:00
- sets command_background=true and foreground arg for most init.d's - s/SVCNAME/RC_SVCNAME for modern varname - s|/var/run|/run| as /var/run is symlinked to /run, which is the linux rundir
15 lines
267 B
Bash
15 lines
267 B
Bash
#!/sbin/openrc-run
|
|
|
|
name="busybox acpid"
|
|
command="/sbin/acpid"
|
|
command_args="$ACPID_OPTS -f"
|
|
pidfile="/run/acpid.pid"
|
|
command_background=true
|
|
start_stop_daemon_args="-g wheel -k 027"
|
|
|
|
depend() {
|
|
need dev localmount
|
|
after hwdrivers modules
|
|
keyword -vserver -lxc
|
|
}
|
|
|