commit: 6da1901a78213ed76f1ae4c5b53e449439bd742f Author: Henning Schild <henning <AT> hennsch <DOT> de> AuthorDate: Fri Mar 8 09:21:33 2019 +0000 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org> CommitDate: Sat Mar 9 21:23:00 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6da1901a
www-apps/radicale: add systemd service file Signed-off-by: Henning Schild <henning <AT> hennsch.de> Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org> www-apps/radicale/files/radicale.service | 25 +++++++++++++++++++++++++ www-apps/radicale/radicale-2.1.11-r1.ebuild | 3 ++- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/www-apps/radicale/files/radicale.service b/www-apps/radicale/files/radicale.service new file mode 100644 index 00000000000..ffafba8d3ae --- /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 cfd37257975..853fccb8ac1 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}
