blob: c1485b918cb039abd74dada96b703ce15550d003 (
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
26
27
28
29
30
31
32
33
|
#!/sbin/runscript
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ndsad/files/ndsad.init,v 1.2 2006/01/15 18:31:41 pva Exp $
depend() {
need net
}
checkconfig() {
if [ ! -f /etc/ndsad.conf ] ; then
eerror "/etc/ndsad.conf does not file exists!"
return 1
fi
return 0
}
start() {
# Comment out the following line to get faster startups
checkconfig || return 1
ebegin "Starting ndsad"
# On success ndsad returns 1.
start-stop-daemon --start --quiet --exec /usr/sbin/ndsad -- -d ${NDSAD_OPTS} >/dev/null 2>&1
eend $(( $? - 1 ))
}
stop () {
ebegin "Stopping ndsad"
start-stop-daemon --stop --quiet --pidfile=/var/run/ndsad.pid --retry 20 >/dev/null
eend $?
}
|