From 875447c7b6641be2ed25bb240334530d47ae1140 Mon Sep 17 00:00:00 2001 From: jc_gargma Date: Sat, 14 Jul 2018 11:25:14 -0700 Subject: Initial commit --- dnscrypt-proxy.initd | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 dnscrypt-proxy.initd (limited to 'dnscrypt-proxy.initd') diff --git a/dnscrypt-proxy.initd b/dnscrypt-proxy.initd new file mode 100644 index 0000000..b958a14 --- /dev/null +++ b/dnscrypt-proxy.initd @@ -0,0 +1,19 @@ +!/usr/bin/openrc-run +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +command="/usr/bin/dnscrypt-proxy" +command_args="${DNSCRYPT_OPTS:---config /etc/dnscrypt-proxy/dnscrypt-proxy.toml}" +command_user="${DNSCRYPT_USER:-dnscrypt}:${DNSCRYPT_GROUP:-dnscrypt}" +pidfile="/run/${SVCNAME}.pid" +start_stop_daemon_args="--background --make-pidfile" + +depend() { + use net logger + provide dns +} + +start_pre() { + checkpath -q -d -m 0775 -o "${command_user}" /var/cache/"${SVCNAME}" + checkpath -q -d -m 0775 -o "${command_user}" /var/log/"${SVCNAME}" +} -- cgit v1.2.1