summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Guo <robert.guo@10gen.com>2020-09-09 10:24:35 -0400
committerRobert Guo <robert.guo@10gen.com>2020-09-09 10:24:35 -0400
commit700e7a60b02554397b4f00dcad64fa10fb940a9b (patch)
treee099e701eb0c6e551645405a1984572422ee1759
parentec07c64c27f7ac71a8da536937e887a2ecf0517a (diff)
downloadmongo-700e7a60b02554397b4f00dcad64fa10fb940a9b.tar.gz
SERVER-50722 Create new MSI upgrade codes for 4.8.0Dev.x/4.8.0.x
-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 03640dc652f..e7ff383b636 100644
--- a/src/mongo/installer/msi/SConscript
+++ b/src/mongo/installer/msi/SConscript
@@ -62,15 +62,15 @@ msi_platform = 'x64'
# Enterprise
if 'enterprise' in env['MONGO_MODULES']:
msi_edition = 'Enterprise'
- upgrade_code = 'a6b1bdf1-df59-4951-b06f-9c725f0e4718'
+ upgrade_code = 'a345b849-e311-4be7-afd8-3f29ee404882'
# Community
else:
if get_option('ssl') == 'on':
msi_edition = 'SSL'
- upgrade_code = '3849e763-ce67-472c-8f51-99584207c5f9'
+ upgrade_code = '06ac54f6-a00b-41b1-a3f2-6327ceba0882'
else:
msi_edition = 'Standard'
- upgrade_code = 'f0a6c3e0-eb06-4e1f-8f8e-25dce563e5b8'
+ upgrade_code = '38b73dec-0435-470b-9dfd-d52e724f17ec'
sourcesList.append("Installer_64.wxs")
@@ -94,7 +94,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) > 4.6:
+if float(major_version) > 4.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 " +