xoxys.lvm/molecule/centos8/prepare.yml
Robert Kaussow 029ef60a59
All checks were successful
continuous-integration/drone/push Build is passing
fix centos 8 testing
2020-01-26 16:02:30 +01:00

10 lines
257 B
YAML

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