feat: convert playbooks to task + clear playbook

This commit is contained in:
Lenoctambule
2026-03-31 21:04:59 +02:00
parent 3c77aaeda3
commit 0f80772ae3
9 changed files with 149 additions and 129 deletions

11
clear.yml Normal file
View File

@@ -0,0 +1,11 @@
- name: Clean up the instance
hosts: hosts
become: true
vars_files:
- vars.yml
tasks:
- name: Remove app files
ansible.builtin.file:
state: absent
path: "{{ dest_dir }}"