diff options
Diffstat (limited to 'ansible/test/roles/cleanup-nexus/tasks/main.yml')
-rw-r--r-- | ansible/test/roles/cleanup-nexus/tasks/main.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ansible/test/roles/cleanup-nexus/tasks/main.yml b/ansible/test/roles/cleanup-nexus/tasks/main.yml new file mode 100644 index 00000000..1d1e811b --- /dev/null +++ b/ansible/test/roles/cleanup-nexus/tasks/main.yml @@ -0,0 +1,7 @@ +--- +- name: Remove saved docker images + delegate_to: localhost + file: + path: "{{ item.archive_path }}" + state: absent + loop: "{{ prepare_nexus_images }}" |