fixed packages to be more generic
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user