Squash merge move_to_single_file_pkgs into main

This commit is contained in:
Matthew Stobbs
2026-04-13 14:50:45 -06:00
parent ff740426c8
commit 8dc427f027
373 changed files with 3883 additions and 9963 deletions

View File

@@ -7,37 +7,26 @@
- name: Add flatpak remotes
when:
- flatpak_remote|length > 0
become: "{{ ext_become }}"
loop: "{{ flatpak_remote | unique }}"
loop: "{{ flatpak_remotes }}"
loop_control:
loop_var: remote
community.general.flatpak_remote:
enabled: true
flatpakrepo_url: "{{ remote.url }}"
method: "{{ flatpak_method }}"
name: "{{ remote.name }}"
state: present
ansible.builtin.include_tasks:
file: helpers/flatpak_remote.yml
- name: Install flatpaks
when:
- pkg_flatpak|length > 0
become: "{{ ext_become }}"
block:
- name: Install flatpak
loop: "{{ pkg_flatpak | unique }}"
loop_control:
loop_var: flatpak
community.general.flatpak:
method: "{{ flatpak.method | default(flatpak_method) }}"
name: "{{ flatpak.name | default(flatpak) }}"
remote: "{{ flatpak.remote | default('flathub') }}"
state: present
loop: "{{ pkg_flatpak | unique }}"
loop_control:
loop_var: flatpak
ansible.builtin.include_tasks:
file: helpers/flatpak.yml
- name: Install pkg_appimage
when:
- pkg_appimage|length > 0
loop: "{{ pkg_appimage }}"
loop_control:
loop_var: pkg
loop_var: appimage
ansible.builtin.include_tasks:
file: appimage.yml
file: helpers/appimage.yml