summaryrefslogtreecommitdiff
path: root/buildscripts/packager_enterprise.py
diff options
context:
space:
mode:
authorJohn Chen <johnchen456@gmail.com>2019-07-11 10:54:16 -0400
committerJohn Chen <johnchen456@gmail.com>2019-07-25 17:58:58 -0400
commit284630e3704be4be091154c5b7fe63c335e9d70c (patch)
tree327189b4f34c70417bb28090aa238f03323d076e /buildscripts/packager_enterprise.py
parent8f75d29d9c814da8c1fd66816a92ef667bc6820f (diff)
downloadmongo-284630e3704be4be091154c5b7fe63c335e9d70c.tar.gz
SERVER-37772 adding RHEL80 distro
Diffstat (limited to 'buildscripts/packager_enterprise.py')
-rwxr-xr-xbuildscripts/packager_enterprise.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildscripts/packager_enterprise.py b/buildscripts/packager_enterprise.py
index 9fbc2f0031b..a8ebbd06286 100755
--- a/buildscripts/packager_enterprise.py
+++ b/buildscripts/packager_enterprise.py
@@ -116,7 +116,7 @@ class EnterpriseDistro(packager.Distro):
def build_os(self, arch): # pylint: disable=too-many-branches
"""Return the build os label in the binary package to download.
- The labels "rhel57", "rhel62", "rhel67" and "rhel70" are for redhat,
+ The labels "rhel57", "rhel62", "rhel67", "rhel70", "rhel80" are for redhat,
the others are delegated to the super class.
"""
# pylint: disable=too-many-return-statements
@@ -140,7 +140,7 @@ class EnterpriseDistro(packager.Distro):
return []
if re.search("(redhat|fedora|centos)", self.dname):
- return ["rhel70", "rhel62", "rhel57"]
+ return ["rhel80", "rhel70", "rhel62", "rhel57"]
return super(EnterpriseDistro, self).build_os(arch)
# pylint: enable=too-many-return-statements