summaryrefslogtreecommitdiff
blob: a2ad26a73c57f1398f6aa6afa656d9f32954068d (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
#!/sbin/runscript 
# Copyright 1999-2009 Gentoo Foundation 
# Distributed under the terms of the GNU General Public License v2 
# $Header: $ 
#
opts="${opts} reload"
description="NSD is an authoritative only, high performance, open source name server"
description_start="Start the server"
description_stop="Stop the server"
description_reload="Rebuild zone database and reload it"

config_file=${config_file:-/etc/nsd/nsd.conf}
my_nsdc="/usr/sbin/nsdc"
my_nsd_checkconf="/usr/sbin/nsd-checkconf"

depend() { 
	need net 
	use logger 
	provide auth-dns
} 

_checkconf() {
	if [ ! -e "${config_file}" ]; then
		eerror "You need to create an appropriate config file."
		eerror "An example can be found in /etc/nsd/nsd.conf.sample"
		return 1
	fi

	if ! ${my_nsd_checkconf} "${config_file}"; then
		eerror "You have errors in your configfile (${config_file})"
		return 1
	fi
	return 0
}

_patch() {
	local difffile=`${my_nsd_checkconf} -o difffile ${config_file}`
	if test -s ${difffile}; then
		ebegin "Patching NSD zone files"
		${my_nsdc} patch > /dev/null
		eend $?
	fi
}

_rebuild() {
	if ! ${my_nsdc} rebuild > /dev/null; then
		eerror "There was an error rebuilding the database. Please review your zone files."
		return 1
	fi
	return 0
}

start() { 
	ebegin "Starting NSD"
	_checkconf || return 1
	${my_nsdc} start
	${my_nsdc} running
	eend $? 
}

stop() { 
	ebegin "Stopping NSD"
	_patch
	${my_nsdc} stop
	eend $? 
} 

reload() {
	ebegin "Rebuilding and reloading NSD zone database"
	_checkconf || return 1
	_rebuild || return 1
	${my_nsdc} reload
	eend $? 
}