28 lines
671 B
YAML
28 lines
671 B
YAML
|
|
|
|
|
|
- name: Deconfigure stats script
|
|
import_tasks: deconfigure_stats.yml
|
|
tags: [ "deconfigure", "stats"]
|
|
|
|
- name: Deconfigure blacklist script
|
|
import_tasks: deconfigure_blacklist.yml
|
|
tags: [ "deconfigure", "blacklist" ]
|
|
|
|
|
|
- name: Deconfigure supervision script
|
|
import_tasks: deconfigure_supervision.yml
|
|
tags: [ "deconfigure", "supervision" ]
|
|
|
|
- name: Remove sentinel directory
|
|
file:
|
|
state: absent
|
|
path: "{{ item }}/sentinel"
|
|
with_items:
|
|
- /usr/local/bin
|
|
- /etc
|
|
vars:
|
|
ansible_become: yes
|
|
ansible_become_method: sudo
|
|
ansible_become_password: "{{ sudo_password }}"
|
|
tags: [ "deconfigure", "stats", "blacklist", "supervision"] |