summaryrefslogtreecommitdiff
blob: 92300350057164a53ca7ea2d8d721ef5c8eece34 (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
#!/sbin/runscript
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

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

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