xoxys.nginx/molecule/default/prepare.yml

10 lines
235 B
YAML
Raw Normal View History

---
- name: Prepare
hosts: all
gather_facts: false
tasks:
- name: Install python for Ansible
2019-10-18 10:54:26 +02:00
raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal)
become: true
changed_when: false