Update Bluej, Greenfoot. Arduino2 Appimage, Slicer Appimage
This commit is contained in:
parent
05a62f8582
commit
58fd458616
11 changed files with 281 additions and 9 deletions
|
@ -37,7 +37,6 @@
|
|||
when: not bjtf.stat.exists
|
||||
|
||||
#### Freecad
|
||||
|
||||
- name: Check if freecad target-file exists
|
||||
delegate_to: localhost
|
||||
stat:
|
||||
|
@ -49,6 +48,49 @@
|
|||
command: wget {{ freecadFullURI }} -O {{ freecadTargetFile }}
|
||||
when: not fctf.stat.exists
|
||||
|
||||
#### Arduino
|
||||
- name: Check if arduino2 target-file exists
|
||||
delegate_to: localhost
|
||||
stat:
|
||||
path: "{{ arduinoTargetFile }}"
|
||||
register: artf
|
||||
|
||||
- name: Download Arduino AppImage
|
||||
delegate_to: localhost
|
||||
command: wget {{ arduinoFullURI }} -O {{ arduinoTargetFile }}
|
||||
when: not artf.stat.exists
|
||||
|
||||
#### Prusa Slicer
|
||||
- name: Check if PrusaSlicer target-file exists
|
||||
delegate_to: localhost
|
||||
stat:
|
||||
path: "{{ prusaTargetFile }}"
|
||||
register: prtf
|
||||
|
||||
- name: Create unzip dir for prusaslicer
|
||||
ansible.builtin.file:
|
||||
path: /tmp/prusaslicer.tmp
|
||||
state: directory
|
||||
|
||||
- name: Download and unpack PrusaSlicer Zip-Archive
|
||||
delegate_to: localhost
|
||||
unarchive:
|
||||
src: "{{ prusaFullURI }}"
|
||||
dest: /tmp/prusaslicer.tmp
|
||||
remote_src: yes
|
||||
when: not prtf.stat.exists
|
||||
|
||||
- name: Copy Prusyslicer Appimage to cache
|
||||
copy:
|
||||
src: "{{ item }}"
|
||||
dest: "{{ prusaTargetFile }}"
|
||||
with_fileglob:
|
||||
- "/tmp/prusaslicer.tmp/*newer-distros*"
|
||||
|
||||
##command: wget {{ prusaFullURI }} -O /tmp/prusaslicer.zip
|
||||
|
||||
###{{ freecadTargetFile }}
|
||||
|
||||
#### Logseq
|
||||
|
||||
- name: Check if logseq target-file exists
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue