common/tasks/nginx/purge.yml

15 lines
233 B
YAML
Raw Normal View History

2020-02-06 14:57:24 +00:00
---
- name: Purge Nginx
apt:
state: absent
purge: true
2020-04-20 09:26:56 +00:00
name:
- nginx
- nginx-common
- nginx-core
2020-02-06 14:57:24 +00:00
- name: Delete Nginx configuration
file:
state: absent
path: '{{ common__nginx__conf_dir }}'