summaryrefslogtreecommitdiff
blob: 75879f8911a18afe2de5b2d6ca7af30fba6f3391 (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
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

# configuration is done in /etc/pormon.sh

depend() {
   need net
}

checkconfig() {
	if [ ! -e /etc/portmon/portmon.hosts ]; then
		error " You need /etc/portmon/portmaon.hosts to run portmon."
		return 1
	fi
}

start() {
	checkconfig || return 1
	ebegin "Starting portmon"
	start-stop-daemon --start --quiet --exec /usr/sbin/portmon -- -d -c /etc/portmon/portmon.hosts
	eend $?
}

stop() {
	checkconfig || return 1
	ebegin "Staring portmon"
	start-stop-daemon --stopt --quiet --exec /usr/sbin/portmon 
}