mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-27 03:22:12 +01:00
Add aport for dcc-servers.net dcc software. The default config has been changed to common settings and to listen for requests from 127.0.0.1
21 lines
319 B
Plaintext
21 lines
319 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
# dcc init.d file for alpine linux.
|
|
# edit /var/dcc/dcc_conf instead of passing options
|
|
name=dcc
|
|
command="/var/dcc/libexec/rcDCC"
|
|
command_args="start"
|
|
command_background="no"
|
|
|
|
start_stop_daemon_args="--user dcc:dcc"
|
|
pidfile="/run/$name.pid"
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|
|
|
|
start_pre() {
|
|
|
|
}
|