e1cb227803
Configuration was moved to config hash param of the mysql::server class. This was done so that additional parameters can be added in the future and not have to be added to both mysql::config and mysql::server as class params This patch updates the README, docs, and examples to correctly use the parameter.
6 lines
129 B
Puppet
6 lines
129 B
Puppet
class { 'mysql::server':
|
|
config_hash => {
|
|
'root_password' => 'password',
|
|
#'old_root_password' => 'puppet'
|
|
}
|
|
}
|