xoxys.postfix_relay/molecule/default/prepare.yml
Robert Kaussow 28df1a5f7b
Some checks failed
continuous-integration/drone/push Build is failing
refactoring
2019-08-24 15:01:30 +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