molecule-hetznercloud/molecule_hetznercloud/playbooks/prepare.yml
Luke Murphy 5179b284ba
Some checks reported errors
continuous-integration/drone/push Build was killed
Add bundled playbooks
2020-04-27 15:20:47 +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