mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03: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
292 B
Bash
15 lines
292 B
Bash
#!/sbin/openrc-run
|
|
|
|
description="Message logging system"
|
|
|
|
name="busybox syslog"
|
|
command="/sbin/syslogd"
|
|
command_args="${SYSLOGD_OPTS} -n"
|
|
pidfile="/run/syslogd.pid"
|
|
command_background=true
|
|
start_stop_daemon_args="-g wheel -k 027"
|
|
|
|
depend() {
|
|
need clock hostname localmount
|
|
provide logger
|
|
}
|