blob: e51bae4bc685e33cdd7a47c8e29bbce6933430bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/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() {
}
|