nginx/tasks/purge.yml

15 lines
224 B
YAML
Raw Normal View History

2021-09-18 19:37:57 +00:00
---
- name: Purge Nginx
apt:
state: absent
purge: true
name:
- nginx
- nginx-common
- nginx-core
- name: Delete Nginx configuration
file:
state: absent
2023-05-29 12:30:47 +00:00
path: '{{ nginx__dir_etc }}'