blob: 80600792bcb3910b427655c523538a1789a1da6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
- name: remove git package
package:
name: git
state: absent
when: git_install.changed
- name: remove openssl package
package:
name: openssl
state: absent
when: ansible_distribution not in ["MacOSX", "Alpine"] and openssl_install.changed
- name: remove openssl package
command: apk del openssl
when: ansible_distribution == "Alpine" and openssl_install.changed
|