common/tasks/nginx/purge.yml

12 lines
185 B
YAML

---
- name: Purge Nginx
apt:
name: nginx
state: absent
purge: true
- name: Delete Nginx configuration
file:
state: absent
path: '{{ common__nginx__conf_dir }}'