diff options
| -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 |
