forked from saltstack/salt-winrepo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blender.sls
31 lines (31 loc) · 1.47 KB
/
blender.sls
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# both 32-bit (x86) AND a 64-bit (AMD64) installer available
{% set PROGRAM_FILES = "%ProgramFiles%" %}
blender:
'2.76':
full_name: 'Blender'
{% if grains['cpuarch'] == 'AMD64' %}
installer: 'http://ftp.nluug.nl/pub/graphics/blender/release/Blender2.76/blender-2.76b-windows64.msi'
uninstaller: 'http://ftp.nluug.nl/pub/graphics/blender/release/Blender2.76/blender-2.76b-windows64.msi'
{% elif grains['cpuarch'] == 'x86' %}
installer: 'http://ftp.nluug.nl/pub/graphics/blender/release/Blender2.76/blender-2.76b-windows32.msi'
uninstaller: 'http://ftp.nluug.nl/pub/graphics/blender/release/Blender2.76/blender-2.76b-windows32.msi'
{% endif %}
install_flags: '/qn /norestart'
uninstall_flags: '/qn /norestart'
msiexec: True
locale: en_US
reboot: False
'2.75':
full_name: 'Blender'
{% if grains['cpuarch'] == 'AMD64' %}
installer: 'http://ftp.nluug.nl/pub/graphics/blender/release/Blender2.75/blender-2.75-windows64.msi'
uninstaller: 'http://ftp.nluug.nl/pub/graphics/blender/release/Blender2.75/blender-2.75-windows64.msi'
{% elif grains['cpuarch'] == 'x86' %}
installer: 'http://ftp.nluug.nl/pub/graphics/blender/release/Blender2.75/blender-2.75-windows32.msi'
uninstaller: 'http://ftp.nluug.nl/pub/graphics/blender/release/Blender2.75/blender-2.75-windows32.msi'
{% endif %}
install_flags: '/qn /norestart'
uninstall_flags: '/qn /norestart'
msiexec: True
locale: en_US
reboot: False