15 lines
225 B
YAML
15 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 }}'
|