summaryrefslogtreecommitdiff
path: root/community/pdns-recursor/pdns-recursor.rc
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2013-05-01 09:38:49 +0200
committerMichał Masłowski <mtjm@mtjm.eu>2013-05-01 09:38:49 +0200
commitc179b246b30ea14c5f9063d95860d7e05a7c278d (patch)
tree30b547b50753a52ce2f857260f8d320d772c4686 /community/pdns-recursor/pdns-recursor.rc
parent30361fcf6cc3dfa38d4b033ccb9fe33ddd17ebe7 (diff)
parent1b05006cb143959d080a200fe11891c9f5caf32c (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/linux-tools/PKGBUILD community/pdns-recursor/PKGBUILD extra/gstreamer0.10/PKGBUILD extra/mkvtoolnix/PKGBUILD extra/tcpdump/PKGBUILD libre/linux-libre-tools/PKGBUILD
Diffstat (limited to 'community/pdns-recursor/pdns-recursor.rc')
-rw-r--r--community/pdns-recursor/pdns-recursor.rc35
1 files changed, 0 insertions, 35 deletions
diff --git a/community/pdns-recursor/pdns-recursor.rc b/community/pdns-recursor/pdns-recursor.rc
deleted file mode 100644
index 992f0b086..000000000
--- a/community/pdns-recursor/pdns-recursor.rc
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-case "$1" in
- start)
- stat_busy "Starting PowerDNS recursor"
- ! /usr/sbin/rec_control ping > /dev/null 2>&1 && /usr/sbin/pdns_recursor --daemon
- if [ $? -gt 0 ]; then
- stat_fail
- else
- add_daemon pdns-recursor
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping PowerDNS recursor"
- rec_control quit > /dev/null 2>&1
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm_daemon pdns-recursor
- stat_done
- fi
- ;;
- restart)
- $0 stop
- sleep 3
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0