forked from saltstack/salt-winrepo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
adobeflashplayeractivex.sls
48 lines (48 loc) · 2.38 KB
/
adobeflashplayeractivex.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{% if salt['pkg.compare_versions'](grains['osversion'], '<', '6.2') %}
adobeflashplayeractivex:
'latest':
full_name: 'Adobe Flash Player 22 ActiveX'
installer: 'http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_22_active_x.msi'
install_flags: '/quiet /norestart REMOVE_PREVIOUS=YES'
uninstaller: 'http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_22_active_x.msi'
uninstall_flags: '/qn /norestart'
msiexec: True
locale: en_US
reboot: False
'22.0.0.209':
full_name: 'Adobe Flash Player 22 ActiveX'
installer: 'http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_22_active_x.msi'
install_flags: '/quiet /norestart REMOVE_PREVIOUS=YES'
uninstaller: 'http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_22_active_x.msi'
uninstall_flags: '/qn /norestart'
msiexec: True
locale: en_US
reboot: False
'21.0.0.242':
full_name: 'Adobe Flash Player 21 ActiveX'
installer: 'http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_21_active_x.msi'
install_flags: '/quiet /norestart REMOVE_PREVIOUS=YES'
uninstaller: 'http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_21_active_x.msi'
uninstall_flags: '/qn /norestart'
msiexec: True
locale: en_US
reboot: False
'20.0.0.306':
full_name: 'Adobe Flash Player 20 ActiveX'
installer: 'http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_20_active_x.msi'
install_flags: '/quiet /norestart REMOVE_PREVIOUS=YES'
uninstaller: 'http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_20_active_x.msi'
uninstall_flags: '/qn /norestart'
msiexec: True
locale: en_US
reboot: False
'18.0.0.241':
full_name: 'Adobe Flash Player 18 ActiveX'
installer: 'http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_18_active_x.msi'
install_flags: '/quiet /norestart REMOVE_PREVIOUS=YES'
uninstaller: 'http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_18_active_x.msi'
uninstall_flags: '/qn /norestart'
msiexec: True
locale: en_US
reboot: False
{% endif %}