update check_radius command definition

This commit is contained in:
Jan Wagner 2008-06-06 13:47:14 +00:00
parent 05e51472aa
commit af42444698
3 changed files with 17 additions and 5 deletions

15
debian/NEWS.Debian vendored
View file

@ -1,9 +1,16 @@
nagios-plugins (1.4.12-1) unstable; urgency=low
removed default port of check_radius definition in favor of the ability to
specify it as 4th argument.
-- Jan Wagner <waja@cyconet.org> Fri, 06 Jun 2008 12:25:59 +0200
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$).
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!
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

5
debian/changelog vendored
View file

@ -41,6 +41,11 @@ nagios-plugins (1.4.12-1) UNRELEASED; urgency=low
providing it (Closes: #482947)
* provide new checks for check_http which makes use of "-H '$HOSTNAME'"
(Closes: #423461)
* fixed check_radius command definition and removed static port in favor of
ability to provide it as 4th argument, since it was broken and unusable
anyways, thanks Josip Rodin <joy@debbugs.entuzijast.net> for profiding a
fix (Closes: #482942)
* mention the check_radius breakerage in NEWS.Debian
[ Alexander Wirt ]
* Call smbclient with -N (supress password prompt) if no password is

View file

@ -1,6 +1,6 @@
# 'check_radius' command definition
define command{
command_name check_radius
command_line /usr/lib/nagios/plugins/check_radius '$ARG1$' '$ARG2$' '$HOSTADDRESS$' 1812 '$ARG3$'
command_line /usr/lib/nagios/plugins/check_radius -F /etc/radiusclient/radiusclient.conf -H '$HOSTADDRESS$' -P '$ARG4$' -t '$ARG3$' -u '$ARG1$' -p '$ARG2$'
}