From 6da1901a78213ed76f1ae4c5b53e449439bd742f Mon Sep 17 00:00:00 2001 From: Henning Schild Date: Fri, 8 Mar 2019 10:21:33 +0100 Subject: www-apps/radicale: add systemd service file Signed-off-by: Henning Schild Signed-off-by: Thomas Deutschmann --- www-apps/radicale/files/radicale.service | 25 +++++++++++++++++++++++++ www-apps/radicale/radicale-2.1.11-r1.ebuild | 3 ++- 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 www-apps/radicale/files/radicale.service (limited to 'www-apps') diff --git a/www-apps/radicale/files/radicale.service b/www-apps/radicale/files/radicale.service new file mode 100644 index 000000000000..ffafba8d3ae7 --- /dev/null +++ b/www-apps/radicale/files/radicale.service @@ -0,0 +1,25 @@ +## this is heavily inspired by https://radicale.org/setup/ + +[Unit] +Description=A simple CalDAV (calendar) and CardDAV (contact) server +After=network.target +Requires=network.target + +[Service] +ExecStart=/usr/bin/radicale +Restart=on-failure +User=radicale +# Deny other users access to the calendar data +UMask=0027 +PrivateTmp=true +ProtectSystem=strict +ProtectHome=true +PrivateDevices=true +ProtectKernelTunables=true +ProtectKernelModules=true +ProtectControlGroups=true +NoNewPrivileges=true +StateDirectory=radicale + +[Install] +WantedBy=multi-user.target diff --git a/www-apps/radicale/radicale-2.1.11-r1.ebuild b/www-apps/radicale/radicale-2.1.11-r1.ebuild index cfd37257975e..853fccb8ac1f 100644 --- a/www-apps/radicale/radicale-2.1.11-r1.ebuild +++ b/www-apps/radicale/radicale-2.1.11-r1.ebuild @@ -5,7 +5,7 @@ EAPI="6" PYTHON_COMPAT=( python{3_4,3_5,3_6} ) -inherit distutils-r1 eutils user +inherit distutils-r1 eutils user systemd MY_PN="Radicale" MY_P="${MY_PN}-${PV}" @@ -60,6 +60,7 @@ python_install_all() { # init file newinitd "${FILESDIR}"/radicale-r2.init.d radicale + systemd_dounit "${FILESDIR}/${PN}.service" # directories keepdir ${RDIR} -- cgit v1.2.3-65-gdbad