common/tasks/apache/purge.yml

16 lines
261 B
YAML
Raw Normal View History

2020-02-06 14:55:41 +00:00
---
- name: Purge Apache
apt:
state: absent
purge: true
2020-04-20 09:26:56 +00:00
name:
- apache2
- apache2-bin
- apache2-data
- apache2-utils
2020-02-06 14:55:41 +00:00
- name: Delete Apache configuration
file:
state: absent
path: '{{ common__apache__conf_dir }}'