Versuch BeamStudio als Deb zu installieren
This commit is contained in:
parent
3977066e42
commit
26057f8903
1 changed files with 51 additions and 0 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue