Skip to content

Commit

Permalink
Merge pull request #1838 from TheBigBear/update-wamp-server
Browse files Browse the repository at this point in the history
Update wamp-server-3.sls to ver. 3.2.3
  • Loading branch information
twangboy authored May 13, 2021
2 parents d9d961b + a09579f commit 37709b8
Showing 1 changed file with 29 additions and 3 deletions.
32 changes: 29 additions & 3 deletions wamp-server-3.sls
Original file line number Diff line number Diff line change
@@ -1,17 +1,43 @@
wamp-server-3:
'3.2.3':
{% if grains['cpuarch'] == 'AMD64' %}
full_name: 'Wampserver64 3.2.3'
installer: 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.2.3_x64.exe'
uninstaller: 'c:\wamp64\uninstall_services.bat'
uninstall_flags: '& c:\wamp64\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
{% else %}
full_name: 'Wampserver 3.2.3'
installer: 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.2.3_x86.exe'
uninstaller: 'c:\wamp\uninstall_services.bat'
uninstall_flags: '& c:\wamp\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
{% endif %}
install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
msiexec: False
locale: en_US
reboot: False

#
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Below are versions of Wamp Server that have had the installer assets removed
# An uninstall only definition will remain here so the packages will show up
# correctly in `pkg.list_pkgs` and to allow for removal using `pkg.remove`
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
'3.1.3':
skip_urltest: True
{% if grains['cpuarch'] == 'AMD64' %}
full_name: 'Wampserver64 3.1.3'
installer: 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe'
#installer: 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe'
uninstaller: 'c:\wamp64\uninstall_services.bat'
uninstall_flags: '& c:\wamp64\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
{% else %}
full_name: 'Wampserver 3.1.3'
installer: 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x86.exe'
#installer: 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x86.exe'
uninstaller: 'c:\wamp\uninstall_services.bat'
uninstall_flags: '& c:\wamp\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
{% endif %}
install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
#install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
msiexec: False
locale: en_US
reboot: False
#

0 comments on commit 37709b8

Please sign in to comment.