xoxys.unifi/molecule/ec2-centos-7/prepare.yml
Robert Kaussow 1f293c2108
Some checks failed
continuous-integration/drone/push Build is failing
modernize
2019-08-04 22:31:25 +02:00

10 lines
252 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 python-zipstream)
become: true
changed_when: false