diff options
author | Sven Wegener <swegener@gentoo.org> | 2017-05-14 13:26:33 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2017-05-25 15:04:46 +0000 |
commit | 38f6898fabe5d0954bed1b965a9217679b5b43d7 (patch) | |
tree | e011e89242258f672a8d78ae0812b116e612c563 /net-dns/pdns-recursor/files | |
parent | net-dns/pdns: Update init script (diff) | |
download | gentoo-38f6898fabe5d0954bed1b965a9217679b5b43d7.tar.gz gentoo-38f6898fabe5d0954bed1b965a9217679b5b43d7.tar.bz2 gentoo-38f6898fabe5d0954bed1b965a9217679b5b43d7.zip |
net-dns/pdns-recursor: Update init script
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'net-dns/pdns-recursor/files')
-rw-r--r-- | net-dns/pdns-recursor/files/pdns-recursor-r1 | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/net-dns/pdns-recursor/files/pdns-recursor-r1 b/net-dns/pdns-recursor/files/pdns-recursor-r1 new file mode 100644 index 000000000000..57c9df1eaa45 --- /dev/null +++ b/net-dns/pdns-recursor/files/pdns-recursor-r1 @@ -0,0 +1,37 @@ +#!/sbin/openrc-run +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +PDNS_CONFIGDIR="${PDNS_CONFIGDIR:-/etc/powerdns}" + +PDNS_CONFIG="${PDNS_CONFIGDIR}/recursor.conf" +PDNS_CHROOTDIR="$( awk -F = '$1 == "chroot" { print $2 }' "${PDNS_CONFIG}" )" +PDNS_SOCKETDIR="$( awk -F = '$1 == "socket-dir" { print $2 }' "${PDNS_CONFIG}" )" +[ -z "${PDNS_SOCKETDIR}" -a -z "${PDNS_CHROOTDIR}" ] && PDNS_SOCKETDIR="/var/run" + +name="PowerDNS Recursor" +description="Recursive name server" + +extra_started_commands="ping" +description_ping="Ping the PowerDNS instance" + +command="/usr/sbin/pdns_recursor" +command_args="--config-dir=${PDNS_CONFIGDIR}" +command_args_foreground="--daemon=no" +command_args_background="--daemon=yes" +yesno ${rc_verbose} || command_args_background="${command_args_background} >/dev/null 2>&1" + +pidfile="${PDNS_CHROOTDIR}/${PDNS_SOCKETDIR}/pdns_recursor.pid" + +control_command="/usr/bin/rec_control" +control_command_args="${command_args}" + +depend() { + need net +} + +ping() { + ebegin "Pinging ${name}" + ${control_command} ${control_command_args} ping >/dev/null 2>&1 + eend $? +} |