Skip to content

Commit 0d94976

Browse files
committed
community.mysql was promoted to ansible.mysql
1 parent 78f9956 commit 0d94976

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ ansible-galaxy install mrlesmithjr.mariadb_galera_cluster
3131
### Ansible Collections
3232

3333
```bash
34-
ansible-galaxy collection install community.mysql
34+
ansible-galaxy collection install ansible.mysql
3535
```
3636

3737
### Minimum Ansible Version

tasks/cacti.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
- name: cacti_monitoring | adding cacti db user for monitoring
3-
community.mysql.mysql_user:
3+
ansible.mysql.mysql_user:
44
host: "{{ cacti_server }}"
55
login_unix_socket: "{{ mariadb_login_unix_socket | default(omit) }}"
66
name: "{{ cacti_db_user }}"
@@ -15,7 +15,7 @@
1515
cacti_server is defined
1616
1717
- name: cacti_monitoring | adding cacti db user for monitoring
18-
community.mysql.mysql_user:
18+
ansible.mysql.mysql_user:
1919
host: "{{ cacti_server_fqdn }}"
2020
login_unix_socket: "{{ mariadb_login_unix_socket | default(omit) }}"
2121
name: "{{ cacti_db_user }}"

tasks/configure_root_access.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
- name: configure_root_access | updating root passwords
3-
community.mysql.mysql_user:
3+
ansible.mysql.mysql_user:
44
host: "{{ item }}"
55
login_unix_socket: "{{ mariadb_login_unix_socket | default(omit) }}"
66
name: "root"
@@ -28,7 +28,7 @@
2828
no_log: "{{ galera_users_no_log | bool }}"
2929

3030
- name: configure_root_access | updating root passwords (allow from anywhere)
31-
community.mysql.mysql_user:
31+
ansible.mysql.mysql_user:
3232
host: "{{ item }}"
3333
login_unix_socket: "{{ mariadb_login_unix_socket | default(omit) }}"
3434
name: "root"

tasks/mysql_databases.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# https://github.com/cdelgehier/ansible-role-XtraDB-Cluster/blob/master/tasks/postinstall.yml
44
# Many thanks to Cedric DELGEHIER
55
- name: mysql_databases | create the databases
6-
community.mysql.mysql_db:
6+
ansible.mysql.mysql_db:
77
name: "{{ item.name }}"
88
state: present
99
login_unix_socket: "{{ mariadb_login_unix_socket | default(omit) }}"
@@ -22,7 +22,7 @@
2222
- item.item.init_script is defined
2323

2424
- name: mysql_databases | initialise databases
25-
community.mysql.mysql_db:
25+
ansible.mysql.mysql_db:
2626
name: "{{ item.item.name }}"
2727
state: import
2828
target: "/tmp/{{ item.item.init_script | basename }}"

tasks/mysql_users.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
when: mariadb_sst_user_plugin == "mysql_native_password"
4444

4545
- name: mysql_users | create MySQL users
46-
community.mysql.mysql_user:
46+
ansible.mysql.mysql_user:
4747
append_privs: "{{ item.0.append_privs | default('no') }}"
4848
encrypted: "{{ item.0.encrypted | default('no') }}"
4949
host: "{{ item.1 }}"

0 commit comments

Comments
 (0)