v.1.2.0 Upgrade flatpaks

This commit is contained in:
2025-01-23 09:28:26 +01:00
parent 1a9862b249
commit f51060e6b3

View File

@@ -8,3 +8,12 @@
ansible.builtin.apt:
update_cache: yes
upgrade: safe
- hosts: homelab
become: true
tasks:
- name: Upgrade flatpaks
ansible.builtin.command: flatpak update --noninteractive
register: flatpak_update_output
changed_when: "'app/' in flatpak_update_output.stdout"