Software aufgeteilt v1
This commit is contained in:
parent
0ccf139311
commit
0d2c927d37
22 changed files with 384 additions and 365 deletions
47
roles/custom/qg-flatpaks/tasks/main.yml
Normal file
47
roles/custom/qg-flatpaks/tasks/main.yml
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
---
|
||||
########
|
||||
# Install flatpack debvian package
|
||||
- name: Install flatpack debian package
|
||||
apt:
|
||||
name: flatpak
|
||||
state: latest
|
||||
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
|
||||
|
||||
######
|
||||
# PrusaSlicer
|
||||
- name: Install Prusa Slicer
|
||||
community.general.flatpak:
|
||||
name: com.prusa3d.PrusaSlicer
|
||||
remote: flathub
|
||||
method: system
|
||||
state: present
|
||||
|
||||
######
|
||||
# Cryptomator Flatpak
|
||||
- name: Install Cryptomator
|
||||
community.general.flatpak:
|
||||
name: org.cryptomator.Cryptomator
|
||||
remote: flathub
|
||||
method: system
|
||||
state: present
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue