18 lines
275 B
Plaintext
18 lines
275 B
Plaintext
|
#!/sbin/openrc-run
|
||
|
supervisor=supervise-daemon
|
||
|
|
||
|
name=radicale
|
||
|
description="Free and open-source CalDAV and CardDAV server"
|
||
|
|
||
|
command=/usr/bin/radicale
|
||
|
command_user=radicale:radicale
|
||
|
|
||
|
depend() {
|
||
|
use net
|
||
|
need localmount
|
||
|
}
|
||
|
|
||
|
start_pre() {
|
||
|
checkpath -d -o radicale "$datadir"
|
||
|
}
|