Tweaked from a submission from maintainer Sergey Bronnikov, ok landry@ The Radicale Project is a complete CalDAV calendar server solution, capable of making multiple calendars available to local and remote users, with optional authentication policies. Calendars can be viewed and edited by a calendar client such as Sunbird or Evolution. The Radicale Project aims to be a light solution, easy to use, easy to install, easy to configure. As a consequence, it requires few software dependencies and is pre-configured to work out-of-the-box.
15 lines
249 B
Bash
15 lines
249 B
Bash
#!/bin/sh
|
|
#
|
|
# $OpenBSD: radicale.rc,v 1.1.1.1 2011/04/15 15:47:17 sthen Exp $
|
|
|
|
daemon="${TRUEPREFIX}/bin/radicale"
|
|
daemon_flags="-d"
|
|
daemon_user="_radicale"
|
|
|
|
. /etc/rc.d/rc.subr
|
|
|
|
pexp="${MODPY_BIN} ${daemon} ${daemon_flags}"
|
|
rc_reload=NO
|
|
|
|
rc_cmd $1
|