summaryrefslogtreecommitdiff
blob: 069b48315f64b9ccd0ea88728d9499dddfcb84ca (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
#!/sbin/openrc-run
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

start() {
    ebegin "Starting rbldnsd"

    start-stop-daemon --start --quiet --pidfile /run/rbldnsd.pid \
	--exec /usr/sbin/rbldnsd -- \
	-r /var/db/rbldnsd \
	-p /run/rbldnsd.pid \
	$(for x in ${LISTEN}; do echo "-b ${x}"; done) \
	${OPTIONS} \
	${ZONES}

    eend $?
}

stop() {
    ebegin "Stopping rbldnsd"
    start-stop-daemon --stop --quiet --pidfile /run/rbldnsd.pid \
	--exec /usr/sbin/rbldnsd
    eend $?
}