xoxys.nginx/molecule/gce-centos-7/prepare.yml
Robert Kaussow ae2035f523
Some checks failed
continuous-integration/drone/push Build is failing
test molecule with gce
2019-02-27 10:37:29 +01: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