blob: dda455a8402abb68a00bd21d0e63474def19973d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
#!/bin/sh
# Exit if any subcommand or pipeline returns a non-zero status.
set -e
BINARYPATH=/usr/bin
SBINARYPATH=/usr/sbin
SOCKETPATH=/var/run
DAEMON_ARGS=""
[ -f "$SBINARYPATH/pdns_recursor" ] || exit 0
[ -r /etc/default/pdns ] && . /etc/default/pdns
[ "$START" = "no" ] && exit 0
# Make sure that /var/run exists
mkdir -p $SOCKETPATH
cd $SOCKETPATH
pdns_recursor="$SBINARYPATH/pdns_recursor $DAEMON_ARGS $EXTRAOPTS"
doPC()
{
ret=$($BINARYPATH/rec_control $EXTRAOPTS $1 $2 2> /dev/null)
}
NOTRUNNING=0
doPC ping || NOTRUNNING=$?
case "$1" in
status)
if test "$NOTRUNNING" = "0"
then
echo "running"
else
echo "not running"
exit 3
fi
;;
stop)
echo -n "Stopping PowerDNS recursing nameserver: "
if test "$NOTRUNNING" = "0"
then
doPC quit
echo $ret
else
echo "not running"
fi
;;
force-stop)
echo -n "Stopping PowerDNS recursing nameserver: "
killall -v -9 pdns_recursor
echo "killed"
;;
start)
echo -n "Starting PowerDNS recursing nameserver: "
if test "$NOTRUNNING" = "0"
then
echo "already running"
else
if $pdns_recursor --daemon
then
echo "started"
else
echo "starting failed"
exit 1
fi
fi
;;
force-reload | restart)
echo -n "Restarting PowerDNS recursing nameserver: "
if test "$NOTRUNNING" = "1"
then
echo "not running, starting"
else
echo -n stopping and waiting..
doPC quit
sleep 3
echo done
fi
$0 start
;;
reload)
echo -n "Reloading PowerDNS recursing nameserver: "
if test "$NOTRUNNING" = "0"
then
doPC reload-zones
echo requested reload
else
echo not running yet
$0 start
fi
;;
monitor)
if test "$NOTRUNNING" = "0"
then
echo "already running"
else
$pdns_recursor --daemon=no --log-common-errors --trace
fi
;;
dump)
if test "$NOTRUNNING" = "0"
then
doPC get-all
echo $ret
else
echo "not running"
fi
;;
*)
echo pdns [start\|stop\|force-reload\|reload\|restart\|status\|monitor\|dump]
;;
esac
|