mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
27 lines
568 B
Text
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 $?
|
|
}
|