xoxys.sshd/molecule/default/prepare.yml

10 lines
235 B
YAML
Raw Normal View History

2019-11-02 19:10:39 +01: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)
become: true
changed_when: false