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:
parent
5166ebf219
commit
05faeecc5d
@ -1,3 +1,3 @@
|
|||||||
[client]
|
[client]
|
||||||
user=root
|
user=root
|
||||||
password={{ mariadb_root_password }}
|
password='{{ mariadb_root_password }}'
|
||||||
|
Loading…
Reference in New Issue
Block a user