blob: 6ae51270141e3219c521b75f3ecaed34e7e2b573 (
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
|
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/pdnsd/files/pdnsd.rc6,v 1.13 2007/07/13 07:46:00 mrness Exp $
opts="reload"
depend() {
need net
provide dns
}
checkconfig() {
if [ ! -e /etc/pdnsd/pdnsd.conf ] ; then
eerror "You need an /etc/pdnsd/pdnsd.conf file first."
eerror "There is a sample in /etc/pdnsd/pdnsd.conf.sample"
return 1
fi
}
start() {
checkconfig || return 1
ebegin "Starting pdnsd"
start-stop-daemon --start --quiet --exec /usr/sbin/pdnsd \
-- -s -t -d -p /var/run/pdnsd.pid ${PDNSDCONFIG}
eend $?
}
stop() {
ebegin "Stopping pdnsd"
start-stop-daemon --stop --quiet --pidfile /var/run/pdnsd.pid
eend $?
}
reload() {
ebegin "Reloading pdnsd.conf"
/usr/sbin/pdnsd-ctl config
eend $?
}
|