Changed .my.cnf single quotes to double quotes to get mysqlreport working again.
This commit is contained in:
parent
06d6dac141
commit
564e8ed693
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ class mysql::server {
|
||||||
default: {
|
default: {
|
||||||
file { "/root/.my.cnf":
|
file { "/root/.my.cnf":
|
||||||
ensure => present,
|
ensure => present,
|
||||||
content => "[client]\nuser='root'\npassword='${mysql_root_password}'\n",
|
content => "[client]\nuser=\"root\"\npassword=\"${mysql_root_password}\"\n",
|
||||||
mode => "0600",
|
mode => "0600",
|
||||||
owner => "root",
|
owner => "root",
|
||||||
group => $operatingsystem ? {
|
group => $operatingsystem ? {
|
||||||
|
|
Loading…
Add table
Reference in a new issue