-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1838 from TheBigBear/update-wamp-server
Update wamp-server-3.sls to ver. 3.2.3
- Loading branch information
Showing
1 changed file
with
29 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
# |