summaryrefslogtreecommitdiff
blob: d2864be7efc0e15e83391f24e536a119b7273520 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/sbin/runscript
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ndoutils/files/ndo2db.init,v 1.1 2007/07/01 08:29:56 dertobi123 Exp $

depends() {
	before nagios
	need mysql
}

start() {
	ebegin "Starting ndo2db"
	start-stop-daemon --start --quiet --exec /usr/nagios/bin/ndo2db-2x \
	-- -c /etc/nagios/ndo2db.cfg
	eend $?
}

stop() {
	ebegin "Stopping ndo2db"
	start-stop-daemon --stop --quiet --exec /usr/nagios/bin/ndo2db-2x
	eend $?
}