nginx/tasks/purge.yml
2021-09-19 00:37:57 +05:00

14 lines
225 B
YAML

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