From 0ab822f209fd5b4e703f7608b375ba5780fa5364 Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Sun, 17 Oct 2010 18:08:42 -0400 Subject: Revert "add a nagios::service::mysql_health define to facilitate the creation of the check_mysql_health mysql nagios plugin. See the mysql module for the installation of this plugin, and example usage" This reverts commit 45edca107c3fd158fc9b00aa90f9f3f6d730185a. reverted because this is much easier to handle within the mysql module itself. --- manifests/service/mysql.pp | 51 ---------------------------------------------- 1 file changed, 51 deletions(-) (limited to 'manifests/service') diff --git a/manifests/service/mysql.pp b/manifests/service/mysql.pp index 2605e8d..ca2ae15 100644 --- a/manifests/service/mysql.pp +++ b/manifests/service/mysql.pp @@ -46,54 +46,3 @@ define nagios::service::mysql( } } - -define nagios::service::mysql_health( - $ensure = present, - $check_hostname = $fqdn, - $check_port = '3306', - $check_username = 'nagios', - $check_password = $nagios_mysql_password, - $check_database = 'information_schema', - $check_warning = undef, - $check_critical = undef, - $check_health_mode = $name, - $check_name = undef, - $check_name2 = undef, - $check_regexp = undef, - $check_units = undef, - $check_mode = 'tcp' -){ - - if ($check_username == '') { - $real_check_username = 'nagios' - } - - case $check_mode { - 'tcp': { - if ($check_hostname == 'localhost') { - $real_check_hostname = '127.0.0.1' - } - else { - $real_check_hostname = $check_hostname - } - } - default: { - if ($check_hostname == '127.0.0.1') { - $real_check_hostname = 'localhost' - } - else { - $real_check_hostname = $check_hostname - } - } - } - - nagios::service { 'mysql_health_${check_health_mode}': - ensure => $ensure, - check_command => "check_mysql_health!${check_hostname}!${check_port}!${real_check_username}!${check_password}${check_health_mode}!{check_database}", - } -} - - - - - -- cgit v1.2.3