xoxys.nginx/molecule/gce-centos-7/prepare.yml
Robert Kaussow 4ba1a83c0f
All checks were successful
continuous-integration/drone/push Build is passing
Refactor CI pipelien and enable molecule testing (#1)
2019-03-25 22:23:40 +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