diff options
Diffstat (limited to 'net-dns/maradns/files/maradns2')
-rw-r--r-- | net-dns/maradns/files/maradns2 | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/net-dns/maradns/files/maradns2 b/net-dns/maradns/files/maradns2 new file mode 100644 index 000000000000..f43166729c08 --- /dev/null +++ b/net-dns/maradns/files/maradns2 @@ -0,0 +1,23 @@ +#!/sbin/runscript +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dns/maradns/files/maradns2,v 1.1 2012/03/12 12:24:50 kumba Exp $ + +depend() { + need net + provide dns +} + +start() { + ebegin "Starting maradns" + start-stop-daemon --start --quiet --name maradns --wait 1000 \ + --exec /usr/bin/duende /usr/sbin/maradns -- -f /etc/maradns/mararc + eend $? +} + +stop() { + ebegin "Stopping maradns" + start-stop-daemon --stop --quiet --name maradns --wait 1000 \ + --exec /usr/bin/duende + eend $? +} |