xoxys.vaultwarden_docker/molecule/centos7/prepare.yml
Robert Kaussow 8f8de06545
Some checks reported errors
continuous-integration/drone/push Build was killed
refactor docs
2020-01-20 23:44:46 +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