blob: 424a1e2628e3aa3103f05450655c2bab70233be3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/sbin/openrc-run
name="$SVCNAME"
pidfile="/var/run/$SVCNAME.pid"
command="/usr/sbin/$SVCNAME"
command_args="-ii${CSYNC2_OPTS:+ $CSYNC2_OPTS}"
command_background="yes"
depend() {
need net localmount
after firewall
}
|