From 82da0dd6acfd71dfd0748acb3e4e1df0870f82b5 Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Thu, 12 Sep 2024 18:07:42 -0400 Subject: [PATCH] add bigboot_cleanup.yml playbook --- bigboot_cleanup.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 bigboot_cleanup.yml diff --git a/bigboot_cleanup.yml b/bigboot_cleanup.yml new file mode 100644 index 0000000..afbb3a6 --- /dev/null +++ b/bigboot_cleanup.yml @@ -0,0 +1,13 @@ +--- +- name: Cleanup from previous Bigboot executions + hosts: all + become: true + gather_facts: true + strategy: free + + vars_files: + - bigboot_vars.yml + + tasks: + - name: Cleanup from any previous executions + ansible.builtin.import_tasks: tasks/cleanup.yml