1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-06-15 12:27:38 +00:00
community.general/test/integration/targets/git/handlers/main.yml
2019-03-28 16:19:40 -07:00

11 lines
198 B
YAML

- name: remove git
package:
name: git
state: absent
- name: remove git from FreeBSD
pkgng:
name: git
state: absent
autoremove: yes
when: ansible_distribution == "FreeBSD"