xoxys.docker_engine/molecule/ec2-centos-7/prepare.yml

10 lines
252 B
YAML
Raw Normal View History

2019-05-12 16:13:18 +02:00
---
- 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