02564bfe08
This allows the galera module and others to write ${::root_home}/.my.cnf independently from create the mysql user. This is useful for cluster setups where you want to create ${::root_home}/.my.cnf on every node but create the user only once.
23 lines
651 B
Puppet
23 lines
651 B
Puppet
#
|
|
class mysql::server::root_password {
|
|
|
|
$options = $mysql::server::options
|
|
|
|
# manage root password if it is set
|
|
if $mysql::server::create_root_user == true and $mysql::server::root_password != 'UNSET' {
|
|
mysql_user { 'root@localhost':
|
|
ensure => present,
|
|
password_hash => mysql_password($mysql::server::root_password),
|
|
}
|
|
}
|
|
|
|
if $mysql::server::create_root_my_cnf == true and $mysql::server::root_password != 'UNSET' {
|
|
file { "${::root_home}/.my.cnf":
|
|
content => template('mysql/my.cnf.pass.erb'),
|
|
owner => 'root',
|
|
mode => '0600',
|
|
require => Mysql_user['root@localhost'],
|
|
}
|
|
}
|
|
|
|
}
|