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:
Steve Kowalik 2016-01-28 16:22:51 +11:00
parent 68138b5240
commit 2f141c5326
1 changed files with 8 additions and 6 deletions

View File

@ -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