forked from saltstack/salt-winrepo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadobeflashplayeractivex.sls
21 lines (21 loc) · 1.01 KB
/
adobeflashplayeractivex.sls
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% if salt['pkg.compare_versions'](grains['osversion'], '<', '6.2') %}
adobeflashplayeractivex:
'latest':
full_name: 'Adobe Flash Player 24 ActiveX'
installer: 'http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_24_active_x.msi'
install_flags: '/quiet /norestart REMOVE_PREVIOUS=YES'
uninstaller: 'http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_24_active_x.msi'
uninstall_flags: '/qn /norestart'
msiexec: True
locale: en_US
reboot: False
'24.0.0.186':
full_name: 'Adobe Flash Player 24 ActiveX'
installer: 'http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_24_active_x.msi'
install_flags: '/quiet /norestart REMOVE_PREVIOUS=YES'
uninstaller: 'http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_24_active_x.msi'
uninstall_flags: '/qn /norestart'
msiexec: True
locale: en_US
reboot: False
{% endif %}