Molecule is broken

This commit is contained in:
Daniel Akulenok
2026-01-21 12:26:35 +01:00
parent 6177112df8
commit a30de11a4a
6 changed files with 0 additions and 108 deletions

View File

@@ -1,28 +0,0 @@
---
- name: Prepare instance for podman role testing
hosts: all
become: true
tasks:
- name: Ensure apt cache is up-to-date
ansible.builtin.apt:
update_cache: true
cache_valid_time: 3600
- name: Install prerequisites used by the role/tests
ansible.builtin.apt:
name:
- apt-transport-https
- ca-certificates
- gnupg
- lsb-release
- curl
state: present
update_cache: false
- name: Install python3-venv and python3-pip for testinfra
ansible.builtin.apt:
name:
- python3-pip
- python3-venv
state: present
update_cache: false