From: alex Date: Sat, 11 Oct 2025 16:55:17 +0000 (+0200) Subject: Add podman X-Git-Url: https://xn--ix-yja.es/gitweb/?a=commitdiff_plain;h=b92dca5d025ddb8c42f137d329033283ef803821;p=infrastructure.git Add podman --- diff --git a/infrastructure/roles/podman/tasks/main.yaml b/infrastructure/roles/podman/tasks/main.yaml new file mode 100644 index 0000000..e804aca --- /dev/null +++ b/infrastructure/roles/podman/tasks/main.yaml @@ -0,0 +1,8 @@ +- name: install podman + ansible.builtin.package: + name: podman +- name: enable auto update + ansible.builtin.systemd_service: + name: podman-auto-update.timer + enabled: true + state: started diff --git a/infrastructure/site.yaml b/infrastructure/site.yaml index 34c1417..acbdc7e 100644 --- a/infrastructure/site.yaml +++ b/infrastructure/site.yaml @@ -6,3 +6,4 @@ - web - systemd - git + - podman