* It will monitor nearly anything you ask it to monitor (TCP + UDP applications, IP connectivity, SNMP OIDS, Programs, Databases, etc). * It presents a nice clean, easy to view web interface that will keep both the managers happy (Red Bad. Green Good.) and the techs happy ("Ah! that's what the problem is"). * It can send alerts numerous ways (such as via pager) and can automatically escalate if someone falls asleep. WWW: http://argus.tcp4me.com/ PR: ports/105837 Submitted by: Brock Williams <brock@gringo.cotcomsol.com>
24 lines
401 B
Bash
24 lines
401 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: argusd
|
|
#
|
|
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
|
|
# to enable this service:
|
|
#
|
|
# argusd_enable (bool): Set to NO by default.
|
|
# Set it to YES to enable argusd
|
|
#
|
|
|
|
. %%RC_SUBR%%
|
|
|
|
name="argusd"
|
|
rcvar=${name}_enable
|
|
|
|
command=%%PREFIX%%/sbin/${name}
|
|
pidfile=/var/run/${name}.pid
|
|
|
|
load_rc_config $name
|
|
|
|
: ${argusd_enable="NO"}
|
|
|
|
run_rc_command "$1"
|