From df7c583002b629f7c7000e23cb11c14198b2ec06 Mon Sep 17 00:00:00 2001 From: Katherina Walshe-Grey Date: Sat, 6 Dec 2025 18:37:54 +0000 Subject: [PATCH] ovh: Install Podman --- playbook.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/playbook.yaml b/playbook.yaml index cd833f2..ac2c3f1 100644 --- a/playbook.yaml +++ b/playbook.yaml @@ -53,3 +53,12 @@ enabled: true state: started become: true + +- name: Set up Podman + hosts: ovh + tasks: + - name: Install Podman + ansible.builtin.dnf: + name: podman + state: present + become: true