Merge "fix puppet-lodgeit to support latest mysql"

This commit is contained in:
Jenkins 2016-03-10 15:05:17 +00:00 committed by Gerrit Code Review
commit ad9af0541d
2 changed files with 11 additions and 5 deletions

View File

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

View File

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