fix packages

This commit is contained in:
Matthew Stobbs
2025-02-22 14:59:18 -07:00
parent 2d825d855d
commit d1e8957f94
47 changed files with 166 additions and 129 deletions

View File

@@ -3,13 +3,13 @@
- name: Install flatpaks on Linux Systems
when:
- flatpaks|length > 0
- pkg_flatpak|length > 0
block:
- name: Add flatpak remotes
when:
- flatpak_remotes|length > 0
- flatpak_remote|length > 0
become: "{{ ext_become }}"
loop: "{{ flatpak_remotes | unique }}"
loop: "{{ flatpak_remote | unique }}"
loop_control:
loop_var: remote
community.general.flatpak_remote:
@@ -20,8 +20,10 @@
state: present
- name: Install flatpaks
when:
- pkg_flatpak|length > 0
become: "{{ ext_become }}"
loop: "{{ flatpaks | unique }}"
loop: "{{ pkg_flatpak | unique }}"
loop_control:
loop_var: flatpak
community.general.flatpak: