roles/mariadb: Quote the password in .my.conf template

Ansible's mysql module can get this password and connect fine, but
`mysql` on the command line chokes if the password is slightly
complicated and is not quoted.

Signed-off-by: Alan Orth <alan.orth@gmail.com>
This commit is contained in:
Alan Orth 2014-09-01 12:41:56 +03:00
parent 5166ebf219
commit 05faeecc5d
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 1 additions and 1 deletions

View File

@ -1,3 +1,3 @@
[client]
user=root
password={{ mariadb_root_password }}
password='{{ mariadb_root_password }}'