common/tasks/apache/purge.yml
2020-04-20 14:26:56 +05:00

15 lines
261 B
YAML

---
- name: Purge Apache
apt:
state: absent
purge: true
name:
- apache2
- apache2-bin
- apache2-data
- apache2-utils
- name: Delete Apache configuration
file:
state: absent
path: '{{ common__apache__conf_dir }}'