fix puppet-lodgeit to support latest mysql
Change-Id: Ib7ad23917d083b1eb6ce9cf87beafb97a7579a7b
This commit is contained in:
parent
c1c0648550
commit
49932b823c
@ -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
|
||||||
|
@ -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':
|
||||||
|
Loading…
x
Reference in New Issue
Block a user