basic installs working

need to run tests on all the builds alone, should use a container system
This commit is contained in:
2026-03-27 22:04:05 -06:00
parent 7f00bb70dc
commit 3a39c083a8
15 changed files with 154 additions and 25 deletions

View File

@@ -1,10 +1,10 @@
# vim: set filetype=yaml.ansible :
---
- name: Install appimages
- name: Install appimages {{ appimage.name }}
become: "{{ install_become }}"
become_user: "{{ install_become_user }}"
block:
- name: Ensure appimage path exists
- name: Ensure appimage path exists {{ appimage.name }}
ansible.builtin.file:
path: "{{ path_appimage }}/{{ appimage.name }}"
mode: "{{ appimage.mode | default('0755') }}"
@@ -12,7 +12,7 @@
group: "{{ appimage.group | default(ansible_user_gid) }}"
state: directory
- name: Fetch appimage
- name: Fetch appimage {{ appimage.name }}
ansible.builtin.get_url:
mode: "{{ appimage.mode | default('0755') }}"
owner: "{{ appimage.owner | default(ansible_user_id) }}"
@@ -22,7 +22,7 @@
decompress: false
backup: false
- name: Link appimage to bin
- name: Link appimage to bin {{ appimage.name }}
vars:
links:
- from: "{{ path_appimage }}/{{ appimage.name }}/{{ appimage.filename }}"