14 lines
233 B
YAML
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 }}'
|