xoxys.python3/molecule/default/prepare.yml
Robert Kaussow 12a946e72e
Some checks reported errors
continuous-integration/drone/push Build was killed
move molecule tests to digital ocean
2019-09-23 00:39:36 +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