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