17 lines
357 B
YAML
17 lines
357 B
YAML
---
|
|
- name: Stop MariaDB before DB cleanup
|
|
ansible.builtin.service:
|
|
name: mariadb
|
|
state: stopped
|
|
|
|
- name: Remove icingaweb2 database directory manually (if exists)
|
|
ansible.builtin.file:
|
|
path: /var/lib/mysql/icingaweb2
|
|
state: absent
|
|
|
|
- name: Start MariaDB after DB cleanup
|
|
ansible.builtin.service:
|
|
name: mariadb
|
|
state: started
|
|
|