1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 12:15:32 +03:00
aports/community/pdns-recursor/pdns-recursor.initd
2019-04-05 00:00:01 +03:00

27 lines
568 B
Text

#!/sbin/openrc-run
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns/files/pdns,v 1.10 2007/05/07 20:19:18 swegener Exp $
name=pdns-recursor
daemon=/usr/sbin/pdns_recursor
recursor_control=/usr/bin/rec_control
extra_started_commands="dump reload"
depend() {
need net
after firewall entropy
}
start() {
ebegin "Starting PowerDNS recursor"
${daemon}
eend $?
}
stop() {
ebegin "Stopping PowerDNS recursor"
${recursor_control} quit &>/dev/null
eend $?
}