update check_radius command definition
This commit is contained in:
parent
05e51472aa
commit
af42444698
7
debian/NEWS.Debian
vendored
7
debian/NEWS.Debian
vendored
|
@ -1,3 +1,10 @@
|
||||||
|
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
|
nagios-plugins (1.4.5-3) unstable; urgency=low
|
||||||
|
|
||||||
ifstatus.cfg has changed. Now you have to provide a community in the first
|
ifstatus.cfg has changed. Now you have to provide a community in the first
|
||||||
|
|
5
debian/changelog
vendored
5
debian/changelog
vendored
|
@ -41,6 +41,11 @@ nagios-plugins (1.4.12-1) UNRELEASED; urgency=low
|
||||||
providing it (Closes: #482947)
|
providing it (Closes: #482947)
|
||||||
* provide new checks for check_http which makes use of "-H '$HOSTNAME'"
|
* provide new checks for check_http which makes use of "-H '$HOSTNAME'"
|
||||||
(Closes: #423461)
|
(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 ]
|
[ Alexander Wirt ]
|
||||||
* Call smbclient with -N (supress password prompt) if no password is
|
* Call smbclient with -N (supress password prompt) if no password is
|
||||||
|
|
2
debian/pluginconfig/radius.cfg
vendored
2
debian/pluginconfig/radius.cfg
vendored
|
@ -1,6 +1,6 @@
|
||||||
# 'check_radius' command definition
|
# 'check_radius' command definition
|
||||||
define command{
|
define command{
|
||||||
command_name check_radius
|
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$'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue