add deconfigure tasks

This commit is contained in:
Valentin CZERYBA 2023-02-12 21:44:19 +01:00
parent 98ee7045f6
commit c22d70bcdd
2 changed files with 33 additions and 1 deletions

View File

@ -0,0 +1,28 @@
- 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"]

View File

@ -9,4 +9,8 @@
- name: Destrpy project web
import_tasks: destroy.yml
tags: ["destroy"]
tags: ["destroy"]
- name: Configure project web
import_tasks: configure.yml
tags: [ "deconfigure" ]