forked from saltstack/salt-winrepo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadobeflashplayeractivex.sls
39 lines (39 loc) · 1.92 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
{% if salt['pkg.compare_versions'](grains['osversion'], '<', '6.2') %}
adobeflashplayeractivex:
latest:
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
'19.0.0.245':
full_name: 'Adobe Flash Player 19 ActiveX'
installer: 'http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_19_active_x.msi'
install_flags: '/quiet /norestart REMOVE_PREVIOUS=YES'
uninstaller: 'http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_19_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
'16.0.0.296':
full_name: 'Adobe Flash Player 16 ActiveX'
installer: 'http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_16_active_x.msi'
install_flags: '/quiet /norestart REMOVE_PREVIOUS=YES'
uninstaller: 'http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_16_active_x.msi'
uninstall_flags: '/qn /norestart'
msiexec: True
locale: en_US
reboot: False
{% endif %}