This commit is contained in:
Jan Wagner 2013-07-18 12:35:49 +00:00
parent 2d7c36b1c6
commit 6fb5ba3a4e
2 changed files with 5 additions and 4 deletions

1
debian/changelog vendored
View file

@ -3,6 +3,7 @@ nagios-plugins (1.4.16-3) UNRELEASED; urgency=low
* Fixed check_squid* command definitions * Fixed check_squid* command definitions
* Add double threshold to check_smtp (LP: #318703) * Add double threshold to check_smtp (LP: #318703)
- 12_check_smtp_double_threshold.dpatch - 12_check_smtp_double_threshold.dpatch
* Remove the additional argument from check_ssh (Closes: #717229)
-- Jan Wagner <waja@cyconet.org> Wed, 10 Jul 2013 15:16:26 +0200 -- Jan Wagner <waja@cyconet.org> Wed, 10 Jul 2013 15:16:26 +0200

View file

@ -1,13 +1,13 @@
# 'check_ssh' command definition # 'check_ssh' command definition
define command{ define command{
command_name check_ssh command_name check_ssh
command_line /usr/lib/nagios/plugins/check_ssh '$HOSTADDRESS$' '$ARG1$' command_line /usr/lib/nagios/plugins/check_ssh '$HOSTADDRESS$'
} }
# 'check_ssh_port' command definition # 'check_ssh_port' command definition
define command{ define command{
command_name check_ssh_port command_name check_ssh_port
command_line /usr/lib/nagios/plugins/check_ssh -p '$ARG1$' '$HOSTADDRESS$' '$ARG2$' command_line /usr/lib/nagios/plugins/check_ssh -p '$ARG1$' '$HOSTADDRESS$'
} }
#### ####
@ -17,11 +17,11 @@ define command{
# 'check_ssh_4' command definition # 'check_ssh_4' command definition
define command{ define command{
command_name check_ssh_4 command_name check_ssh_4
command_line /usr/lib/nagios/plugins/check_ssh -4 '$HOSTADDRESS$' '$ARG1$' command_line /usr/lib/nagios/plugins/check_ssh -4 '$HOSTADDRESS$'
} }
# 'check_ssh_port_4' command definition # 'check_ssh_port_4' command definition
define command{ define command{
command_name check_ssh_port_4 command_name check_ssh_port_4
command_line /usr/lib/nagios/plugins/check_ssh -4 -p '$ARG1$' '$HOSTADDRESS$' '$ARG2$' command_line /usr/lib/nagios/plugins/check_ssh -4 -p '$ARG1$' '$HOSTADDRESS$'
} }