summaryrefslogtreecommitdiff
path: root/src/mongo/installer
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2017-11-14 14:50:15 -0500
committerMark Benvenuto <mark.benvenuto@mongodb.com>2017-11-14 14:50:15 -0500
commit714b2f9c4c0db34ad9a678a2be538f05ba0d9c41 (patch)
tree35b48f0642ac4eb95c38169001dc22bd6a16a7e3 /src/mongo/installer
parentacde99b058c6e23302bc849015ed5e90b15b19fc (diff)
downloadmongo-714b2f9c4c0db34ad9a678a2be538f05ba0d9c41.tar.gz
SERVER-31971 Create new upgrade codes for 3.7.x/3.8.x
Diffstat (limited to 'src/mongo/installer')
-rw-r--r--src/mongo/installer/msi/SConscript8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/installer/msi/SConscript b/src/mongo/installer/msi/SConscript
index 1c7ebdfa835..56f8fb09359 100644
--- a/src/mongo/installer/msi/SConscript
+++ b/src/mongo/installer/msi/SConscript
@@ -48,15 +48,15 @@ msi_platform = 'x64'
# Enterprise
if 'enterprise' in env['MONGO_MODULES']:
msi_edition = 'Enterprise'
- upgrade_code = '822C75A4-40BA-456B-91D3-C339155F0F90'
+ upgrade_code = '4E54E7FE-4C19-4291-B21B-6C2742199A6B'
# Community
else:
if has_option('ssl'):
msi_edition = 'SSL'
- upgrade_code = 'FDAA2775-060E-4C54-9C19-A84197F3070D'
+ upgrade_code = '74770C0B-53B0-4F8C-A453-B92CF7448FCD'
else:
msi_edition = 'Standard'
- upgrade_code = '7BCCBD4E-AC8A-48BC-9922-E9EBB158A060'
+ upgrade_code = '94AF64D6-0A84-4238-ACB7-E112E13EE0B4'
sourcesList.append("Installer_64.wxs")
@@ -80,7 +80,7 @@ major_version = "%s.%s" % (mv[0], mv[1])
# It allows upgrade from 3.2.0 to 3.2.1 in place instead of side-by-side.
# 3. Update the check for the next major release below so we bump the GUIDs in the future.
#
-if float(major_version) > 3.6:
+if float(major_version) > 3.8:
# If you are troubleshooting this error, see the comment above
env.FatalError("The upgrade codes are out of date for this release. Please \n" +
"replace the existing GUIDs listed in this file with new GUIDs so " +