forked from saltstack/salt-winrepo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
audacity.sls
33 lines (33 loc) · 1.21 KB
/
audacity.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
32
33
{% if grains['cpuarch'] == 'AMD64' %}
{% set PROGRAM_FILES = "%ProgramFiles(x86)%" %}
{% else %}
{% set PROGRAM_FILES = "%ProgramFiles%" %}
{% endif %}
audacity:
'2.1.0':
full_name: 'Audacity 2.1.0'
installer: 'http://heanet.dl.sourceforge.net/project/audacity/audacity/2.1.0/audacity-win-2.1.0.exe'
install_flags: '/SP- /verysilent /norestart'
uninstaller: '{{ PROGRAM_FILES }}\Audacity\unins000.exe'
uninstall_flags: '/SP- /verysilent /norestart'
msiexec: False
locale: en_US
reboot: False
'2.0.6':
full_name: 'Audacity 2.0.6'
installer: 'http://heanet.dl.sourceforge.net/project/audacity/audacity/2.0.6/audacity-win-2.0.6.exe'
install_flags: '/SP- /verysilent /norestart'
uninstaller: '{{ PROGRAM_FILES }}\Audacity\unins000.exe'
uninstall_flags: '/SP- /verysilent /norestart'
msiexec: False
locale: en_US
reboot: False
'2.0.3':
full_name: 'Audacity 2.0.3'
installer: 'http://audacity.googlecode.com/files/audacity-win-2.0.3.exe'
install_flags: '/SP- /verysilent /norestart'
uninstaller: '{{ PROGRAM_FILES }}\Audacity\unins000.exe'
uninstall_flags: '/SP- /verysilent /norestart'
msiexec: False
locale: en_US
reboot: False