blob: b405391e0d408ea986925fd32af05c2b5020f7ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/sbin/runscript
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%/*}"
#}
|