add check_mysql_slave command definition

This commit is contained in:
Jan Wagner 2012-02-27 21:09:05 +00:00
parent 4a1ebb8316
commit fd7b65e7a8
2 changed files with 8 additions and 0 deletions

1
debian/changelog vendored
View file

@ -17,6 +17,7 @@ nagios-plugins (1.4.15-6) UNRELEASED; urgency=low
* Add 19_check_http_help.dpatch to clarify that check_http won't verify
certificates (Closes: #644627), thanks to Michael Renner
* Add check_jabber and check_jabber_4 command definitions
* Add check_mysql_slave command definition
-- Jan Wagner <waja@cyconet.org> Wed, 07 Sep 2011 15:33:55 +0200

View file

@ -15,3 +15,10 @@ define command{
command_name check_mysql_database
command_line /usr/lib/nagios/plugins/check_mysql -d '$ARG3$' -H '$HOSTADDRESS$' -u '$ARG1$' -p '$ARG2$'
}
# 'check_mysql_slave' command definition
define command{
command_name check_mysql_slave
command_line /usr/lib/nagios/plugins/check_mysql -H '$HOSTADDRESS$' -u '$ARG1$' -p '$ARG2$' -S
}