diff options
author | Siran Wang <siran.wang@mongodb.com> | 2021-05-18 23:52:10 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-05-19 04:14:31 +0000 |
commit | e9c838ed66b1b1e46d04164c9e1876738fb7aede (patch) | |
tree | 0cfbddc3cc0bf3fdce25c5f298cdc550229593fb /src/mongo/installer/msi | |
parent | 5005b41c787fef67a0136f51b97d952a8a1a2629 (diff) | |
download | mongo-e9c838ed66b1b1e46d04164c9e1876738fb7aede.tar.gz |
SERVER-56357 Create new MSI upgrade code for 5.1
Diffstat (limited to 'src/mongo/installer/msi')
-rw-r--r-- | src/mongo/installer/msi/SConscript | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/installer/msi/SConscript b/src/mongo/installer/msi/SConscript index 74c82f86162..050703d8bae 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 = '38f6bdc4-3314-4fe7-a947-2cd4a8892e19'
+ upgrade_code = '853A13DC-34FF-4AA9-BAE2-E4E06228C3C3'
# Community
else:
if get_option('ssl') == 'on':
msi_edition = 'SSL'
- upgrade_code = '37409c29-deb4-4a4f-9ace-921f8df4bb12'
+ upgrade_code = '70AC128E-D90B-4905-9309-7739AF9AF206'
else:
msi_edition = 'Standard'
- upgrade_code = '404a7067-cc62-4f43-950d-147e81f61d1e'
+ upgrade_code = '0B2EC44A-2BAA-4AEC-803F-92A885A9D12E'
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) > 5.0:
+if float(major_version) > 6.0:
# 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 " +
|