Software aufgeteilt v1
This commit is contained in:
parent
0ccf139311
commit
0d2c927d37
22 changed files with 384 additions and 365 deletions
28
roles/custom/qg-freecad/tasks/main.yml
Normal file
28
roles/custom/qg-freecad/tasks/main.yml
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
---
|
||||
########
|
||||
# FreeCAD AppImage
|
||||
#
|
||||
- name: Make sure target dir exists
|
||||
ansible.builtin.file:
|
||||
path: /opt/appimages/freecad/
|
||||
state: directory
|
||||
recurse: yes
|
||||
owner: root
|
||||
group: root
|
||||
mode: '0755'
|
||||
|
||||
- name: Download FreeCAD AppImage from Cache
|
||||
ansible.builtin.get_url:
|
||||
url: "{{ mirror_appimage }}/FreeCAD.AppImage"
|
||||
dest: /opt/appimages/freecad/FreeCAD.AppImage
|
||||
mode: '0755'
|
||||
environment:
|
||||
http_proxy: ''
|
||||
|
||||
- name: Copy desktop freecad starter file to target
|
||||
copy:
|
||||
src: files/qg.appimage.FreeCAD.desktop
|
||||
dest: /usr/share/applications/qg.appimage.FreeCAD.desktop
|
||||
mode: '0644'
|
||||
owner: root
|
||||
group: root
|
||||
Loading…
Add table
Add a link
Reference in a new issue