issue #11 : include the double colon in our test

This commit is contained in:
Klaus Zerwes 2022-11-17 12:09:41 +01:00
parent 619e34fcae
commit 904ecbc06f
2 changed files with 26 additions and 0 deletions

View File

@ -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:

View File

@ -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: