blob: d5a7d7be866efe3ed789a646501deaf68fb951f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/sbin/openrc-run
pidfile=/var/run/radicale.pid
start_stop_daemon_args="--user radicale"
command=/usr/bin/radicale
command_args="--foreground"
command_background=yes
depend() {
use net
need localmount
}
#start_pre() {
# checkpath --directory "${pidfile%/*}"
#}
|