fix puppet-lodgeit to support latest mysql

Change-Id: Ib7ad23917d083b1eb6ce9cf87beafb97a7579a7b
This commit is contained in:
Yolanda Robla 2016-02-02 11:07:21 +01:00
parent c1c0648550
commit 49932b823c
2 changed files with 11 additions and 5 deletions

View File

@ -7,10 +7,11 @@ class lodgeit::mysql(
$database_password, $database_password,
) { ) {
class { '::mysql::server': class { '::mysql::server':
config_hash => { root_password => $mysql_root_password,
'root_password' => $mysql_root_password, override_options => {
'default_engine' => 'InnoDB', 'mysqld' => {
'bind_address' => '127.0.0.1', 'default-storage-engine' => 'InnoDB',
}
} }
} }
include ::mysql::server::account_security include ::mysql::server::account_security

View File

@ -1,5 +1,10 @@
class { '::mysql::server': class { '::mysql::server':
config_hash => { 'root_password' => '123456' }, root_password => $mysql_root_password,
override_options => {
'mysqld' => {
'default-storage-engine' => 'InnoDB',
}
}
} }
mysql::db { 'acceptance': mysql::db { 'acceptance':