fix module to work with latest mysql version

Change-Id: I14328be9f00a94a6eb18670f85ee0b61b434833c
This commit is contained in:
Yolanda Robla 2016-02-02 11:11:34 +01:00
parent 2a78b958c7
commit d63ca9a3b6
1 changed files with 5 additions and 4 deletions

View File

@ -7,10 +7,11 @@ class etherpad_lite::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',
}
}
}