fixed packages to be more generic

This commit is contained in:
2026-04-18 15:27:33 -06:00
parent 951dfc327f
commit 61c6e800ad
14 changed files with 152 additions and 73 deletions

View File

@@ -1,4 +1,12 @@
# vim: set filetype=yaml.ansible :
#
## Variables:
## appimage is top level:
## name: symlink name, command used on CLI to launch
## url: url to download appimage
## filename: filename of appimage
## mode: file mode of the appimage, optional
## checksum: file checksum of appimage if available, optional
---
- name: Install appimages {{ appimage.name }}
become: "{{ install_become }}"
@@ -17,7 +25,7 @@
mode: "{{ appimage.mode | default('0755') }}"
owner: "{{ appimage.owner | default(ansible_user_id) }}"
group: "{{ appimage.group | default(ansible_user_gid) }}"
url: "{{ appimage.url }}"
url: "{{ appimage.url }}/{{ appimage.filename }}"
dest: "{{ path_appimage }}/{{ appimage.name }}/{{ appimage.filename }}"
checksum: "{{ appimage.checksum | default(omit) }}"
decompress: false