Updates to many roles, including main user role to allow setting an alternate home directory

This commit is contained in:
2022-08-25 00:23:56 -06:00
parent 03ee154857
commit 6b36273324
36 changed files with 2619 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
---
- name: "Make sure the MySQL users are present"
mysql_user:
name: "{{ item.name }}"
password: "{{ item.pass | default('techie') }}"
priv: "{{ item.priv | default('*.*:ALL') }}"
state: "present"
host: "{{ item.host | default('%') }}"
with_items: "{{ mysql_users }}"
no_log: "true"