Change the order of the items in mysql_user.

This commit is contained in:
Andrea Dell'Amico 2025-02-06 19:42:40 +01:00
parent 90b6c81845
commit 058c5f6dbb
Signed by: adellam
GPG Key ID: 147ABE6CEB9E20FF
1 changed files with 12 additions and 6 deletions

View File

@ -8,10 +8,10 @@
login_unix_socket: "{{ mysql_socket }}"
when: mysql_root_password is defined
with_items:
- '{{ ansible_hostname }}'
- localhost
- 127.0.0.1
- ::1
- localhost
- '{{ ansible_hostname }}'
ignore_errors: true
tags: ['mysql', 'mysql_root']
@ -23,10 +23,10 @@
login_unix_socket: "{{ mysql_socket }}"
when: mysql_root_password is not defined
with_items:
- '{{ ansible_hostname }}'
- localhost
- 127.0.0.1
- ::1
- localhost
- '{{ ansible_hostname }}'
ignore_errors: true
tags: ['mysql', 'mysql_root']
@ -49,9 +49,15 @@
tags: ['mysql', 'mysql_root']
- name: configure_root_access | Delete anonymous MySQL server user for localhost
community.mysql.mysql_user: user="" state="absent" login_unix_socket={{ mysql_socket }}
community.mysql.mysql_user:
user: ""
state: "absent"
login_unix_socket: "{{ mysql_socket }}"
tags: mysql
- name: configure_root_access | Remove the MySQL test database
community.mysql.mysql_db: db=test state=absent login_unix_socket={{ mysql_socket }}
community.mysql.mysql_db:
db: test
state: absent
login_unix_socket: "{{ mysql_socket }}"
tags: mysql