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

@@ -1,7 +1,7 @@
# vim: set filetype=yaml.ansible :
---
- name: Install appimage
become: "{{ archive_become }}"
become: "{{ ext_become }}"
block:
- name: Ensure appimage path exists
ansible.builtin.file:
@@ -10,7 +10,7 @@
state: directory
- name: Fetch appimage
become: "{{ archive_become }}"
become: "{{ ext_become }}"
ansible.builtin.get_url:
mode: '0755'
decompress: false
@@ -19,7 +19,7 @@
dest: "{{ path.appimage }}/{{ pkg.link_name }}/{{ pkg.file }}"
- name: Link appimage to bin
become: "{{ archive_become }}"
become: "{{ ext_become }}"
ansible.builtin.file:
state: link
src: "{{ path.appimage }}/{{ pkg.link_name }}/{{ pkg.file }}"