Bluej v542, Arduino IDE 2 testing
This commit is contained in:
parent
58fd458616
commit
c04e753bb9
7 changed files with 52 additions and 5 deletions
|
@ -66,6 +66,15 @@
|
|||
group: root
|
||||
mode: '0755'
|
||||
|
||||
- name: Make sure lib dir for template exists
|
||||
ansible.builtin.file:
|
||||
path: /var/lib/arduino2
|
||||
state: directory
|
||||
recurse: yes
|
||||
owner: root
|
||||
group: root
|
||||
mode: '0755'
|
||||
|
||||
- name: Download Arduino2 AppImage from Cache
|
||||
ansible.builtin.get_url:
|
||||
url: "{{ mirror_appimage }}/ArduinoIDE2.AppImage"
|
||||
|
@ -80,6 +89,24 @@
|
|||
owner: root
|
||||
group: root
|
||||
|
||||
- name: Copy arduino Appimage start Script to target
|
||||
copy:
|
||||
src: files/start-arduino2-appimage
|
||||
dest: /opt/appimages/arduino2/start-arduino2-appimage
|
||||
mode: '0755'
|
||||
owner: root
|
||||
group: root
|
||||
|
||||
- name: Delete arduino15 template
|
||||
ansible.builtin.file:
|
||||
state: absent
|
||||
path: /var/lib/arduino2/template
|
||||
|
||||
- name: Extract up to date arduino15 template to target
|
||||
ansible.builtin.unarchive:
|
||||
src: "{{ mirror_appimage }}/ArduinoIDE2-template.zip"
|
||||
dest: /var/lib/arduino2/
|
||||
remote_src: yes
|
||||
|
||||
########
|
||||
# Prusa Slicer AppImage
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue