This commit is contained in:
Frank Schiebel 2024-06-06 10:29:07 +02:00
parent a1b1cfa8a4
commit b5f79519cb
18 changed files with 260 additions and 34 deletions

View file

@ -36,6 +36,8 @@
command: wget {{ greenfootURI }} -O {{ greenfootTargetFile }}
when: not gftf.stat.exists
#### Freecad
- name: Check if freecad target-file exists
delegate_to: localhost
stat:
@ -47,3 +49,21 @@
command: wget {{ freecadFullURI }} -O {{ freecadTargetFile }}
when: not fctf.stat.exists
#### Logseq
- name: Check if logseq target-file exists
delegate_to: localhost
stat:
path: "{{ logseqTargetFile }}"
register: lstf
- name: Download logseq AppImage
delegate_to: localhost
command: wget {{ logseqFullURI }} -O {{ logseqTargetFile }}
when: not lstf.stat.exists
### Scratch offline
- name: Download Scratch Offline deb
delegate_to: localhost
command: wget {{ scratch_src_uri }} -O /var/www/html/debs/{{ scratch_install_name }}