2013-04-11 19:02:41 +02:00
|
|
|
#This is a helper class to add a monitoring user to the database
|
|
|
|
#
|
2011-06-01 05:47:19 +02:00
|
|
|
class mysql::server::monitor (
|
|
|
|
$mysql_monitor_username,
|
|
|
|
$mysql_monitor_password,
|
|
|
|
$mysql_monitor_hostname
|
|
|
|
) {
|
|
|
|
|
2012-04-24 11:56:01 +02:00
|
|
|
Class['mysql::server'] -> Class['mysql::server::monitor']
|
2012-02-09 20:26:00 +01:00
|
|
|
|
2013-08-18 02:54:02 +02:00
|
|
|
mysql_user{ "${mysql_monitor_username}@${mysql_monitor_hostname}":
|
2012-02-09 20:26:00 +01:00
|
|
|
ensure => present,
|
2012-09-04 15:59:47 +02:00
|
|
|
password_hash => mysql_password($mysql_monitor_password),
|
2011-05-25 08:22:43 +02:00
|
|
|
}
|
2012-02-09 20:26:00 +01:00
|
|
|
|
2013-08-29 00:03:51 +02:00
|
|
|
mysql_grant { "${mysql_monitor_username}@${mysql_monitor_hostname}":
|
|
|
|
ensure => present,
|
|
|
|
user => "${mysql_monitor_username}@${mysql_monitor_hostname}",
|
|
|
|
table => '*.*',
|
|
|
|
privileges => [ 'PROCESS_PRIV', 'SUPER_PRIV' ],
|
|
|
|
require => Mysql_user["${mysql_monitor_username}@${mysql_monitor_hostname}"],
|
2011-05-25 08:22:43 +02:00
|
|
|
}
|
2012-02-09 20:26:00 +01:00
|
|
|
|
2011-05-25 08:22:43 +02:00
|
|
|
}
|