aboutsummaryrefslogtreecommitdiffstats
path: root/testing/pdns-recursor/pdns-recursor.initd
diff options
context:
space:
mode:
Diffstat (limited to 'testing/pdns-recursor/pdns-recursor.initd')
-rw-r--r--testing/pdns-recursor/pdns-recursor.initd27
1 files changed, 0 insertions, 27 deletions
diff --git a/testing/pdns-recursor/pdns-recursor.initd b/testing/pdns-recursor/pdns-recursor.initd
deleted file mode 100644
index 80e851d064..0000000000
--- a/testing/pdns-recursor/pdns-recursor.initd
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/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
-}
-
-start() {
- ebegin "Starting PowerDNS recursor"
- ${daemon}
- eend $?
-}
-
-stop() {
- ebegin "Stopping PowerDNS recursor"
- ${recursor_control} quit &>/dev/null
- eend $?
-}