summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/ansible-galaxy/cleanup.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/ansible-galaxy/cleanup.yml')
-rw-r--r--test/integration/targets/ansible-galaxy/cleanup.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/integration/targets/ansible-galaxy/cleanup.yml b/test/integration/targets/ansible-galaxy/cleanup.yml
new file mode 100644
index 0000000..e80eeef
--- /dev/null
+++ b/test/integration/targets/ansible-galaxy/cleanup.yml
@@ -0,0 +1,26 @@
+- hosts: localhost
+ vars:
+ git_install: '{{ lookup("file", lookup("env", "OUTPUT_DIR") + "/git_install.json") | from_json }}'
+ openssl_install: '{{ lookup("file", lookup("env", "OUTPUT_DIR") + "/openssl_install.json") | from_json }}'
+ ws_dir: '{{ lookup("file", lookup("env", "OUTPUT_DIR") + "/ws_dir.json") | from_json }}'
+ tasks:
+ - name: cleanup
+ include_tasks: "{{ cleanup_filename }}"
+ with_first_found:
+ - "cleanup-{{ ansible_distribution | lower }}.yml"
+ - "cleanup-default.yml"
+ loop_control:
+ loop_var: cleanup_filename
+
+ - name: Remove default collection directories
+ file:
+ path: "{{ item }}"
+ state: absent
+ loop:
+ - "~/.ansible/collections/ansible_collections"
+ - /usr/share/ansible/collections/ansible_collections
+
+ - name: Remove webserver directory
+ file:
+ path: "{{ ws_dir }}"
+ state: absent