Skip to content

Commit b69a8f5

Browse files
committed
Fixes geerlingguy#200: Quote the values inside .my.cnf template.
1 parent b8cc5a6 commit b69a8f5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

templates/root-my.cnf.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[client]
2-
user={{ mysql_root_username }}
3-
password={{ mysql_root_password }}
2+
user="{{ mysql_root_username }}"
3+
password="{{ mysql_root_password }}"

templates/user-my.cnf.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[client]
2-
user={{ mysql_user_name }}
3-
password={{ mysql_user_password }}
2+
user="{{ mysql_user_name }}"
3+
password="{{ mysql_user_password }}"

0 commit comments

Comments
 (0)