From 26057f890392f67f6096bc07bbfda1ac4e9c1120 Mon Sep 17 00:00:00 2001 From: Frank Schiebel Date: Mon, 20 Jul 2026 13:05:41 +0200 Subject: [PATCH] Versuch BeamStudio als Deb zu installieren --- roles/lmn_qgsoftware/tasks/install.yml | 51 ++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/roles/lmn_qgsoftware/tasks/install.yml b/roles/lmn_qgsoftware/tasks/install.yml index 88ce58c..ac6cea0 100644 --- a/roles/lmn_qgsoftware/tasks/install.yml +++ b/roles/lmn_qgsoftware/tasks/install.yml @@ -212,6 +212,18 @@ environment: http_proxy: '' +# Tracker als tarpack +# +- name: Unpack tracker.zip to target + ansible.builtin.unarchive: + src: "{{ tarpack_tracker }}" + dest: / + remote_src: yes + when: tarpack_tracker is defined and tarpack_tracker | length > 0 + environment: + http_proxy: '' + + ####### # Scratch @@ -221,3 +233,42 @@ environment: http_proxy: '' +######## +# BeamStudio +- name: Install beamStudio + ansible.builtin.apt: + deb: "{{ mirror_debs }}/beamStudio.deb" + environment: + http_proxy: '' + + +###### +# Flathub repo hinzufügen +- name: Add the flathub flatpak repository remote to the user installation + community.general.flatpak_remote: + name: flathub + state: present + flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo + method: system + + +###### +# Qrca + +- name: Install Qrca + community.general.flatpak: + name: org.kde.qrca + remote: flathub + method: system + state: present + +###### +# Cryptomator Flatpak + +- name: Install Qrca + community.general.flatpak: + name: org.cryptomator.Cryptomator + remote: flathub + method: system + state: present +