We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ed100b commit d6a99c9Copy full SHA for d6a99c9
roles/mysql_hardening/tasks/mysql_secure_installation.yml
@@ -5,7 +5,7 @@
5
when: mysql_root_password == '-----====>SetR00tPa$$wordH3r3!!!<====-----'
6
7
- name: ensure that the root password is present
8
- mysql_user:
+ community.mysql.mysql_user:
9
name: 'root'
10
host_all: true
11
password: '{{ mysql_root_password | mandatory }}'
@@ -20,14 +20,14 @@
20
tags: my_cnf
21
22
- name: ensure that the test database is absent
23
- mysql_db:
+ community.mysql.mysql_db:
24
name: test
25
state: absent
26
login_unix_socket: "{{ login_unix_socket | default(omit) }}"
27
when: mysql_remove_test_database
28
29
- name: ensure that anonymous users are absent
30
31
name: ''
32
33
0 commit comments