Yolanda Robla 49932b823c fix puppet-lodgeit to support latest mysql
Change-Id: Ib7ad23917d083b1eb6ce9cf87beafb97a7579a7b
2016-02-09 11:41:07 +01:00

17 lines
338 B
Puppet

class { '::mysql::server':
root_password => $mysql_root_password,
override_options => {
'mysqld' => {
'default-storage-engine' => 'InnoDB',
}
}
}
mysql::db { 'acceptance':
user => 'acceptance',
password => '123456',
host => 'localhost',
grant => ['all'],
require => Class['mysql::server'],
}