summaryrefslogtreecommitdiff
path: root/net-dns/pdnsd/files/pdnsd.online.2
blob: 089f4e76e9cce19bc54f9e05cd2b595cbcc6b512 (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
#!/sbin/openrc-run
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

command="/usr/sbin/pdnsd-ctl"

depend() {
	need pdnsd
}

wait_for_socket() {
	local i=0 pdnsd_socket="/var/cache/pdnsd/pdnsd.status"
	while [ $i -lt 10 ]; do
		[ -S "${pdnsd_socket}" ] && return 0
		i=$(($i+1))
		sleep 1s
	done

    	return 1
}

start() {
	wait_for_socket || return 1
	ebegin "Starting pdnsd-online"
	${command} -q server all up
	eend $?
}

stop() {
	ebegin "Stopping pdnsd-online"
	${command} -q server all down
	eend $?
}