Skip to content

Commit 1ccd0aa

Browse files
author
Weselowski, Rene (rweselowski)
committed
fixes geerlingguy#225 include ansible_managed in templates.
Modified templates/my.cnf.j2 Modified templates/root-my.cnf.j2 Modified templates/user-my.cnf.j2
1 parent fbc5114 commit 1ccd0aa

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

templates/my.cnf.j2

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# {{ ansible_managed }}
2+
13
[client]
24
#password = your_password
35
port = {{ mysql_port }}

templates/root-my.cnf.j2

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# {{ ansible_managed }}
2+
13
[client]
24
user="{{ mysql_root_username }}"
35
password="{{ mysql_root_password }}"

templates/user-my.cnf.j2

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# {{ ansible_managed }}
2+
13
[client]
24
user="{{ mysql_user_name }}"
35
password="{{ mysql_user_password }}"

0 commit comments

Comments
 (0)