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

14 lines
233 B
YAML

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