mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 10:13:58 +00:00
16 lines
289 B
YAML
16 lines
289 B
YAML
---
|
|
- name: Provision Merlin MariaDB primary (users/grants/datadir)
|
|
hosts: mariadb_primary
|
|
gather_facts: false
|
|
become: true
|
|
serial: 1
|
|
|
|
pre_tasks:
|
|
- name: Gather minimal facts
|
|
ansible.builtin.setup:
|
|
gather_subset:
|
|
- min
|
|
|
|
roles:
|
|
- mariadb_primary
|