xoxys.droneci/molecule/default/prepare.yml
Robert Kaussow a69feb55d8
Some checks failed
continuous-integration/drone/push Build is failing
move molecule tests to digital ocean
2019-09-23 15:43:40 +02:00

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