xoxys.cacerts/molecule/centos8/prepare.yml
Robert Kaussow 70dc0eb0aa
Some checks failed
continuous-integration/drone/push Build is failing
add centos8 testing
2020-01-25 17:47:41 +01:00

10 lines
258 B
YAML

---
- name: Prepare
hosts: all
gather_facts: false
tasks:
- name: Install python for Ansible
raw: test -e /usr/bin/python3 || (dnf -y install python3 && alternatives --set python /usr/bin/python3)
become: true
changed_when: false