Skip to content

Commit

Permalink
Fixed mysql config file
Browse files Browse the repository at this point in the history
  • Loading branch information
StuartWheater authored Feb 16, 2022
1 parent 41b4612 commit 07f02e7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions manifests/db_server.pp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@
class { ::mysql::server:
restart => true,
root_password => $mysql_root_password,
create_root_my_cnf => '/my.cnf',
config_file => '/my.cnf',
create_root_my_cnf => true,
override_options => { 'mysqld' =>
{ 'default-storage-engine' => 'innodb',
'character-set-server' => 'utf8', }
Expand All @@ -139,7 +140,8 @@
class { ::mysql::server:
restart => true,
root_password => $mysql_root_password,
create_root_my_cnf => '/my.cnf',
config_file => '/my.cnf',
create_root_my_cnf => true,
override_options => { 'mysqld' =>
{ 'default-storage-engine' => 'innodb',
'character-set-server' => 'utf8',
Expand Down

0 comments on commit 07f02e7

Please sign in to comment.