xoxys.postfix_relay/molecule/default/prepare.yml
Robert Kaussow b54a96a0fe
Some checks failed
continuous-integration/drone/push Build is failing
refactor ci pipeline
2019-10-18 13:12:38 +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