summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/ansible-galaxy/cleanup-freebsd.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/ansible-galaxy/cleanup-freebsd.yml')
-rw-r--r--test/integration/targets/ansible-galaxy/cleanup-freebsd.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/integration/targets/ansible-galaxy/cleanup-freebsd.yml b/test/integration/targets/ansible-galaxy/cleanup-freebsd.yml
new file mode 100644
index 0000000..87b987d
--- /dev/null
+++ b/test/integration/targets/ansible-galaxy/cleanup-freebsd.yml
@@ -0,0 +1,12 @@
+- name: remove git from FreeBSD
+ pkgng:
+ name: git
+ state: absent
+ autoremove: yes
+ when: git_install.changed
+- name: remove openssl from FreeBSD
+ pkgng:
+ name: openssl
+ state: absent
+ autoremove: yes
+ when: openssl_install.changed