remove static community string in ifstatus.cfg and leave notice in NEWS.Debian

This commit is contained in:
Jan Wagner 2007-01-11 14:10:59 +00:00
parent 680a8d32ad
commit 7c29bd37f0
3 changed files with 13 additions and 3 deletions

9
debian/NEWS.Debian vendored Normal file
View file

@ -0,0 +1,9 @@
nagios-plugins (1.4.5-3) unstable; urgency=low
ifstatus.cfg has changed. Now you have to provide a community in the first
argument ($ARG1$). Description and IfIndex moved to second argument ($ARG2$).
E.g.: use "check_ifstatus!public" instead of "check_ifstatus" as
check_command!
-- Jan Wagner <waja@cyconet.org> Thu, 11 Jan 2007 14:56:47 +0100

1
debian/changelog vendored
View file

@ -10,6 +10,7 @@ nagios-plugins (1.4.5-3) UNRELEASED; urgency=low
* add whois to Suggests of nagios-plugins-standard
* fixed static community string for check_snmp_bgpstate in ping.cfg
(closes: #403892).
* remove static community string in ifstatus.cfg
-- sean finney <seanius@copelandia.seanius.net> Wed, 6 Dec 2006 23:47:12 +0100

View file

@ -1,20 +1,20 @@
# 'check_ifstatus' command definition
define command{
command_name check_ifstatus
command_line /usr/lib/nagios/plugins/check_ifstatus -H $HOSTADDRESS$ -C public
command_line /usr/lib/nagios/plugins/check_ifstatus -H $HOSTADDRESS$ -C $ARG1$
}
# 'check_ifoperstatus_ifindex' command definition
define command{
command_name check_ifoperstatus_ifindex
command_line /usr/lib/nagios/plugins/check_ifoperstatus -H $HOSTADDRESS$ -C public -k $ARG1$
command_line /usr/lib/nagios/plugins/check_ifoperstatus -H $HOSTADDRESS$ -C $ARG1$ -k $ARG2$
}
# 'check_ifoperstatus_ifdescr' command definition
define command{
command_name check_ifoperstatus_ifdescr
command_line /usr/lib/nagios/plugins/check_ifoperstatus -H $HOSTADDRESS$ -C public -d $ARG1$
command_line /usr/lib/nagios/plugins/check_ifoperstatus -H $HOSTADDRESS$ -C $ARG1$ -d $ARG2$
}