vm-ansible/roles/mariadb/tasks/main.yaml
2022-02-05 19:28:20 +01:00

14 lines
221 B
YAML

---
- name: "Install MariaDB via apt"
apt:
update_cache: yes
state: present
name:
- mariadb
- name: Enable and restart MariaDB daemon
service:
name: mariadb
state: restarted
enabled: yes