Skip to content

Commit 14809e6

Browse files
authored
Merge pull request geerlingguy#226 from rwese/master
fixes geerlingguy#225 include ansible_managed in templates.
2 parents fbc5114 + 1ccd0aa commit 14809e6

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

templates/my.cnf.j2

Lines changed: 2 additions & 0 deletions
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

Lines changed: 2 additions & 0 deletions
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

Lines changed: 2 additions & 0 deletions
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)