File copy

This commit is contained in:
Iwan Clément
2019-03-10 14:23:06 +01:00
parent 18cfe7f2e5
commit 5394bf3e0f

View File

@@ -1,3 +1,14 @@
{% if grains['kernel'] == 'Linux' %}
{% set LURL='https://www.arduino.cc/download_handler.php?f=/arduino-1.8.8-linux64.tar.xz' %}
'Arduino IDE copy':
file.managed:
- source: {{LURL}}
- skip_verify: True
# - source_hash: https://launchpad.net/veracrypt/trunk/1.23/+download/veracrypt-1.23-sha512sum.txt
- name : "/tmp/arduino.tar.xz"
- user: root
- group: root
- mode: 755
{% endif %}