xoxys.smb/molecule/centos8/prepare.yml
Robert Kaussow 7b847ef503
Some checks failed
continuous-integration/drone/push Build is failing
add centos 8 testing
2020-01-26 15:55:10 +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