From d63ca9a3b648908ce9f98fa1e08251bab7f88026 Mon Sep 17 00:00:00 2001 From: Yolanda Robla Date: Tue, 2 Feb 2016 11:11:34 +0100 Subject: [PATCH] fix module to work with latest mysql version Change-Id: I14328be9f00a94a6eb18670f85ee0b61b434833c --- manifests/mysql.pp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/manifests/mysql.pp b/manifests/mysql.pp index b6eb625..6014dac 100644 --- a/manifests/mysql.pp +++ b/manifests/mysql.pp @@ -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', + } } }