forked from saltstack/salt-winrepo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fiddler.sls
25 lines (25 loc) · 789 Bytes
/
fiddler.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
# just 32-bit x86 installer available
{% if grains['cpuarch'] == 'AMD64' %}
{% set PROGRAM_FILES = "%ProgramFiles(x86)%" %}
{% else %}
{% set PROGRAM_FILES = "%ProgramFiles%" %}
{% endif %}
fiddler:
'4.6.2.2':
full_name: 'Fiddler'
installer: 'http://fiddler2.com/dl/fiddler4setup.exe'
install_flags: '/S /D={{ PROGRAM_FILES }}\Fiddler'
uninstaller: '{{ PROGRAM_FILES }}\Fiddler\uninst.exe'
uninstall_flags: '/S'
msiexec: False
locale: en_US
reboot: False
'2.6.2.2':
full_name: 'Fiddler'
installer: 'http://fiddler2.com/dl/fiddler2setup.exe'
install_flags: '/S /D={{ PROGRAM_FILES }}\Fiddler'
uninstaller: '{{ PROGRAM_FILES }}\Fiddler\uninst.exe'
uninstall_flags: '/S'
msiexec: False
locale: en_US
reboot: False