Add MariaDB support...

This commit is contained in:
Jason Rothstein 2021-10-31 00:00:58 -05:00
parent 1fc8892712
commit 5d85ea4fd6
2 changed files with 8 additions and 0 deletions

View File

@ -18,6 +18,9 @@ roles:
- name: 'ensure_log_rotation' - name: 'ensure_log_rotation'
src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_log_rotation.git' src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_log_rotation.git'
version: 'master' version: 'master'
- name: 'ensure_mariadb'
src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_mariadb.git'
version: 'master'
- name: 'ensure_os_patch' - name: 'ensure_os_patch'
src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_os_patch.git' src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_os_patch.git'
version: 'master' version: 'master'

View File

@ -18,6 +18,11 @@
gather_facts: 'yes' gather_facts: 'yes'
roles: roles:
- role: 'ensure_apache' - role: 'ensure_apache'
- name: 'mariadb'
hosts: 'mariadb'
gather_facts: 'yes'
roles:
- role: 'ensure_mariadb'
- name: 'docker' - name: 'docker'
hosts: 'docker' hosts: 'docker'
gather_facts: 'yes' gather_facts: 'yes'