diff options
author | Brian McCarthy <brian.mccarthy@mongodb.com> | 2019-05-10 15:55:15 -0400 |
---|---|---|
committer | Brian McCarthy <brian.mccarthy@mongodb.com> | 2019-05-14 07:57:19 -0400 |
commit | 91358a94413060947e0f5a5425c0f0ec67e9daf9 (patch) | |
tree | 759d8a60396b661de5328efca4368cbc4d7bd46b /buildscripts | |
parent | 3cbd136094249209a212aab06696c2ef0db41b26 (diff) | |
download | mongo-91358a94413060947e0f5a5425c0f0ec67e9daf9.tar.gz |
SERVER-41098 Add Suse15 to packager.py
Diffstat (limited to 'buildscripts')
-rwxr-xr-x | buildscripts/packager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/packager.py b/buildscripts/packager.py index 28b83621d38..6d951d04b4f 100755 --- a/buildscripts/packager.py +++ b/buildscripts/packager.py @@ -326,7 +326,7 @@ class Distro(object): raise Exception("BUG: unsupported architecture (%s)" % arch) if re.search("(suse)", self.dname): - return ["suse11", "suse12"] + return ["suse11", "suse12", "suse15"] elif re.search("(redhat|fedora|centos)", self.dname): return ["rhel70", "rhel71", "rhel72", "rhel62", "rhel55", "rhel67"] elif self.dname in ['amazon', 'amazon2']: |