summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/ansible-galaxy/cleanup-freebsd.yml
blob: 87b987d1312cbf3339561960c80f9c9f8f3e3d06 (plain)
1
2
3
4
5
6
7
8
9
10
11
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