xoxys.kernel/molecule/default/prepare.yml
Robert Kaussow c0bd2374e9
All checks were successful
continuous-integration/drone/push Build is passing
initial commit
2019-11-04 00:22:18 +01:00

10 lines
235 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)
become: true
changed_when: false