[mapguide-commits] r4944 - trunk/Installer/Installers/MapGuide
svn_mapguide at osgeo.org
svn_mapguide at osgeo.org
Tue Jun 15 08:53:52 EDT 2010
Author: jng
Date: 2010-06-15 12:53:52 +0000 (Tue, 15 Jun 2010)
New Revision: 4944
Modified:
trunk/Installer/Installers/MapGuide/MapGuide.wxs
Log:
#1373: Turn off reboot requirement in installer for Windows Server 2003 and above as the MG Server has been proven to start after installation (and pick up the MENTOR_DICTIONARY_PATH env var) without needing a reboot.
Modified: trunk/Installer/Installers/MapGuide/MapGuide.wxs
===================================================================
--- trunk/Installer/Installers/MapGuide/MapGuide.wxs 2010-06-15 10:38:13 UTC (rev 4943)
+++ trunk/Installer/Installers/MapGuide/MapGuide.wxs 2010-06-15 12:53:52 UTC (rev 4944)
@@ -733,8 +733,8 @@
<Custom
Action="RemoveApacheServiceCA"
Before="RemoveFiles">MGWEB_CONFIG="APACHE" AND &WebExtApacheFeature=2</Custom>
-
- <ScheduleReboot After="InstallFinalize">NOT Installed AND &CSMapFeature>2</ScheduleReboot>
+ <!-- 502 = Windows Server 2003 -->
+ <ScheduleReboot After="InstallFinalize">VersionNT<502 AND NOT Installed AND &CSMapFeature>2</ScheduleReboot>
</InstallExecuteSequence>
</Product>
</Wix>
More information about the mapguide-commits
mailing list