xoxys.podman/molecule/default/prepare.yml

12 lines
357 B
YAML
Raw Normal View History

2022-03-18 19:07:25 +01:00
---
- name: Prepare
hosts: all
2024-02-03 22:33:14 +01:00
gather_facts: False
2022-03-18 19:07:25 +01:00
tasks:
2024-02-03 22:47:06 +01:00
- name: Bootstrap Python for Ansible
ansible.builtin.raw: |
command -v python3 python ||
((test -e /usr/bin/apt && (apt -y update && apt install -y python-minimal)) ||
echo "Warning: Python not boostrapped due to unknown platform.")
2024-02-03 22:33:14 +01:00
changed_when: False