forked from saltstack/salt-winrepo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blender.sls
17 lines (17 loc) · 800 Bytes
/
blender.sls
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# both 32-bit (x86) AND a 64-bit (AMD64) installer available
{% set PROGRAM_FILES = "%ProgramFiles%" %}
blender:
'2.78':
full_name: 'Blender'
{% if grains['cpuarch'] == 'AMD64' %}
installer: 'http://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'
uninstaller: 'http://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'
{% elif grains['cpuarch'] == 'x86' %}
installer: 'http://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows32.msi'
uninstaller: 'http://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows32.msi'
{% endif %}
install_flags: '/qn /norestart'
uninstall_flags: '/qn /norestart'
msiexec: True
locale: en_US
reboot: False