diff options
| author | alex <alex@pdp7.net> | 2025-10-11 18:55:17 +0200 |
|---|---|---|
| committer | alex <alex@pdp7.net> | 2025-10-11 18:55:17 +0200 |
| commit | b92dca5d025ddb8c42f137d329033283ef803821 (patch) | |
| tree | 4563573657bf994cd4466ab81bf297a59003fa17 | |
| parent | 897e5952fe3f46957413e8fd606ad8367b1b632c (diff) | |
Add podman
| -rw-r--r-- | infrastructure/roles/podman/tasks/main.yaml | 8 | ||||
| -rw-r--r-- | infrastructure/site.yaml | 1 |
2 files changed, 9 insertions, 0 deletions
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 |
