Skip to content

Commit

Permalink
issue #11 : include the double colon in our test
Browse files Browse the repository at this point in the history
  • Loading branch information
zerwes committed Nov 17, 2022
1 parent 619e34f commit 904ecbc
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
13 changes: 13 additions & 0 deletions example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,19 @@
src: lorem
dest: ipsum

# issue #11 check double colon
- name: update mysql root password for all root accounts
mysql_user:
name: root
host: "{{ item }}"
password: "{{ mysql_root_password }}"
with_items:
- "{{ inventory_hostname_short }}"
- 127.0.0.1
- ::1
ignore_errors: true
run_once: true

# block
- name: "configure ..."
block:
Expand Down
13 changes: 13 additions & 0 deletions exampleconverted.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,19 @@
src: lorem
dest: ipsum

# issue #11 check double colon
- name: update mysql root password for all root accounts
community.mysql.mysql_user:
name: root
host: "{{ item }}"
password: "{{ mysql_root_password }}"
with_items:
- "{{ inventory_hostname_short }}"
- 127.0.0.1
- ::1
ignore_errors: true
run_once: true

# block
- name: "configure ..."
block:
Expand Down

0 comments on commit 904ecbc

Please sign in to comment.