blob: 6ae1117afe548adab168cc7be0442e3dbd0c18ff (
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/inadyn-mt.conf
eend $?
}
stop() {
ebegin "Stopping inadyn"
start-stop-daemon --stop --exec /usr/sbin/inadyn-mt \
--pidfile /var/run/inadyn-mt.pid
eend $?
}
|