xoxys.vaultwarden_ldap_docker/molecule/centos7/prepare.yml
Robert Kaussow 0f33b8945b
All checks were successful
continuous-integration/drone/push Build is passing
initial commit
2020-06-21 22:00:53 +02: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