xoxys.ntp/molecule/default/prepare.yml
Robert Kaussow 77ed65b14b
All checks were successful
continuous-integration/drone/push Build is passing
add molecule
2019-06-19 22:04:27 +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