fixing obvious errors

This commit is contained in:
Matthew Stobbs
2026-02-06 01:28:14 -07:00
parent e91e7e9698
commit b87fc8235e
10 changed files with 149 additions and 181 deletions

View File

@@ -16,17 +16,11 @@
- name: Install flatpaks
when:
- pkg_flatpak|length > 0
block:
- name: Install flatpak
loop: "{{ pkg_flatpak | unique }}"
loop_control:
loop_var: flatpak
vars:
pkg_method: "{{ flatpak.method | default(default_flatpak_method) }}"
pkg_remote: "{{ flatpak.remote | default(default_flatpak_remote) }}"
pkg_name: "{{ flatpak.name | default(flatpak) }}"
ansible.builtin.include_tasks:
file: helpers/flatpak.yml
loop: "{{ pkg_flatpak | unique }}"
loop_control:
loop_var: flatpak
ansible.builtin.include_tasks:
file: helpers/flatpak.yml
- name: Install pkg_appimage
when:
@@ -34,9 +28,5 @@
loop: "{{ pkg_appimage }}"
loop_control:
loop_var: appimage
vars:
appimage_link_name: "{{ appimage.link_name }}"
appimage_url: "{{ appimage.url }}"
appimage_file: "{{ appimage.file }}"
ansible.builtin.include_tasks:
file: helpers/appimage.yml