remove static community string in ifstatus.cfg and leave notice in NEWS.Debian
This commit is contained in:
parent
680a8d32ad
commit
7c29bd37f0
9
debian/NEWS.Debian
vendored
Normal file
9
debian/NEWS.Debian
vendored
Normal 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
1
debian/changelog
vendored
|
@ -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
|
||||
|
||||
|
|
6
debian/pluginconfig/ifstatus.cfg
vendored
6
debian/pluginconfig/ifstatus.cfg
vendored
|
@ -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$
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue