nginx/tasks/purge.yml

23 lines
396 B
YAML
Raw Normal View History

2021-09-18 15:37:57 -04: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 08:30:47 -04:00
path: '{{ nginx__dir_etc }}'
2023-05-29 09:14:15 -04:00
- name: Delete maintenance files
file:
state: absent
path: '{{ nginx__dir_www_html }}/{{ item }}'
with_items:
- 'maintenance.html'
- 'maintenance.jpg'