xoxys.postfix_relay/molecule/centos7/prepare.yml

10 lines
235 B
YAML
Raw Normal View History

2019-08-24 15:01:30 +02:00
---
- name: Prepare
hosts: all
gather_facts: false
tasks:
- name: Install python for Ansible
2019-10-18 13:12:38 +02:00
raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal)
2019-08-24 15:01:30 +02:00
become: true
changed_when: false