Update with latest out of band changes

This commit is contained in:
Daniel Akulenok
2026-01-21 10:11:18 +01:00
parent 17fea0e02b
commit 6177112df8
6 changed files with 61 additions and 58 deletions

View File

@@ -30,3 +30,18 @@
enabled: false
state: stopped
when: not podman_enable_api_service
- name: Enable and start Podman auto-update service
ansible.builtin.systemd:
name: podman-auto-update.service
enabled: true
state: started
daemon_reload: true
when: podman_enable_auto_update
- name: Disable Podman auto-update service
ansible.builtin.systemd:
name: podman-auto-update.service
enabled: false
state: stopped
when: not podman_enable_auto_update