common/tasks/apache/purge.yml

12 lines
190 B
YAML
Raw Normal View History

2020-02-06 14:55:41 +00:00
---
- name: Purge Apache
apt:
name: apache2
state: absent
purge: true
- name: Delete Apache configuration
file:
state: absent
path: '{{ common__apache__conf_dir }}'