xoxys.lvm/molecule/centos8/prepare.yml
Robert Kaussow ecb4b33665
Some checks failed
continuous-integration/drone/push Build is failing
add testin for centos8
2020-01-26 15:42:22 +01:00

10 lines
235 B
YAML

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