summaryrefslogtreecommitdiff
blob: 2c1a2cc31c4d3727ec135f84ca05a10799640542 (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/runscript
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

depend() {
	need net
	use logger dns
	after bootmisc
}

start() {
	ebegin "Starting inadyn"
	start-stop-daemon --start --chuid inadyn-mt --exec /usr/sbin/inadyn-mt \
	    --pidfile /var/run/inadyn-mt.pid --make-pidfile --background \
	    -- --syslog --input_file /etc/conf.d/inadyn-mt
	eend $?
}

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