forked from saltstack/salt-winrepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wireshark.sls
33 lines (30 loc) · 1.28 KB
/
wireshark.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
wireshark-64:
1.11.1:
installer: 'http://wiresharkdownloads.riverbed.com/wireshark/win64/Wireshark-win64-1.11.1.exe'
full_name: 'Wireshark 1.11.1 (64-bit)'
reboot: False
install_flags: '/S /desktopicon=yes /quicklaunchicon=yes'
uninstaller: '%PROGRAMFILES%\Wireshark\uninstall.exe'
uninstall_flags: '/S'
1.11.0:
installer: 'http://wiresharkdownloads.riverbed.com/wireshark/win64/Wireshark-win64-1.11.0.exe'
full_name: 'Wireshark 1.11.0 (64-bit)'
reboot: False
install_flags: '/S /desktopicon=yes /quicklaunchicon=yes'
uninstaller: '%PROGRAMFILES%\Wireshark\uninstall.exe'
uninstall_flags: '/S'
wireshark-32:
1.11.1:
installer: 'http://wiresharkdownloads.riverbed.com/wireshark/win32/Wireshark-win32-1.11.1.exe'
full_name: 'Wireshark 1.11.1 (32-bit)'
reboot: False
install_flags: '/S /desktopicon=yes /quicklaunchicon=yes'
uninstaller: '%PROGRAMFILES(x86)%\Wireshark\uninstall.exe'
uninstall_flags: '/S'
1.11.0:
installer: 'http://wiresharkdownloads.riverbed.com/wireshark/win32/Wireshark-win32-1.11.0.exe'
full_name: 'Wireshark 1.11.0 (32-bit)'
reboot: False
install_flags: '/S /desktopicon=yes /quicklaunchicon=yes'
uninstaller: '%PROGRAMFILES(x86)%\Wireshark\uninstall.exe'
uninstall_flags: '/S'