bfdb96959c
<drue at users.sourceforge.net>. Argus is a system and network monitoring application. It will monitor anything you ask it to monitor (TCP + UDP applications, IP connectivity, SNMP OIDS, Programs, Databases, etc), presents a nice clean, easy to view web interface, it can send alerts numerous ways (such as via pager) and can automatically escalate if someone falls asleep.
25 lines
532 B
Bash
25 lines
532 B
Bash
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: argusd.sh,v 1.1.1.1 2004/07/07 17:22:30 xtraeme Exp $
|
|
#
|
|
|
|
# PROVIDE: argusd
|
|
# REQUIRE: DAEMON LOGIN
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="argusd"
|
|
rcvar=$name
|
|
command="@PREFIX@/sbin/argusd"
|
|
ctl_command="@PREFIX@/sbin/argusctl"
|
|
start_cmd="${command}"
|
|
stop_cmd="${ctl_command} shutdown reason=\"argusd stop\""
|
|
|
|
if [ -f /etc/rc.subr -a -f /etc/rc.conf -a -d /etc/rc.d -a -f /etc/rc.d/DAEMON ]
|
|
then
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|
|
else
|
|
[ "$1" eq "start" ] && $start_cmd
|
|
[ "$1" eq "stop" ] && $stop_cmd
|
|
fi
|