You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-dns/pdns-recursor/files/precursor

29 lines
491 B

#!/sbin/runscript
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
extra_started_commands="ping"
depend() {
need net
}
start() {
ebegin "Starting PowerDNS Recursor"
/usr/sbin/pdns_recursor --daemon=yes &>/dev/null
eend $?
}
stop() {
ebegin "Stopping PowerDNS Recursor"
/usr/sbin/rec_control quit &>/dev/null
eend $?
}
ping() {
ebegin "Pinging PowerDNS Recursor"
/usr/sbin/rec_control ping &>/dev/null
eend $?
}