12 lines
185 B
YAML
12 lines
185 B
YAML
|
---
|
||
|
- name: Purge Nginx
|
||
|
apt:
|
||
|
name: nginx
|
||
|
state: absent
|
||
|
purge: true
|
||
|
|
||
|
- name: Delete Nginx configuration
|
||
|
file:
|
||
|
state: absent
|
||
|
path: '{{ common__nginx__conf_dir }}'
|