Rewrite use of ::mysql::server in zanata::mysql
::mysql::server has dropped use of config_hash to tune aspects of the deployed mysql service. Rewrite the class included inside zanata::mysql to use overrides. Change-Id: I6dae4744812dc2469afc947e272cc9aa14e70788
This commit is contained in:
parent
68138b5240
commit
2f141c5326
@ -26,12 +26,14 @@ class zanata::mysql(
|
||||
) {
|
||||
|
||||
class { '::mysql::server':
|
||||
config_hash => {
|
||||
'root_password' => $mysql_root_password,
|
||||
'default_engine' => 'InnoDB',
|
||||
'bind_address' => $mysql_bind_address,
|
||||
'port' => $mysql_port,
|
||||
}
|
||||
root_password => $mysql_root_password,
|
||||
override_options => {
|
||||
'mysqld' => {
|
||||
'default-storage-engine' => 'InnoDB',
|
||||
'bind-address' => $mysql_bind_address,
|
||||
'port' => $mysql_port,
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
include ::mysql::server::account_security
|
||||
|
Loading…
x
Reference in New Issue
Block a user