diff options
author | Brian McCarthy <brian.mccarthy@mongodb.com> | 2017-12-18 18:40:32 -0500 |
---|---|---|
committer | Brian McCarthy <brian.mccarthy@mongodb.com> | 2018-02-09 15:45:10 -0500 |
commit | d95018ef806aa2195a66e804a8cd7da4c4249176 (patch) | |
tree | 1a5b0c508ded8a848ae7833f82a2d66c2cddad42 /buildscripts/packager.py | |
parent | 46b911217be85acb992879bd693b0c50280f494b (diff) | |
download | mongo-d95018ef806aa2195a66e804a8cd7da4c4249176.tar.gz |
SERVER-29463 Platform Support: add Debian 9 stretch
Diffstat (limited to 'buildscripts/packager.py')
-rwxr-xr-x | buildscripts/packager.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/buildscripts/packager.py b/buildscripts/packager.py index c821da9f437..3cab40dc140 100755 --- a/buildscripts/packager.py +++ b/buildscripts/packager.py @@ -262,6 +262,8 @@ class Distro(object): return 'wheezy' elif build_os == 'debian81': return 'jessie' + elif build_os == 'debian92': + return 'stretch' else: raise Exception("unsupported build_os: %s" % build_os) else: @@ -291,7 +293,7 @@ class Distro(object): elif self.n == 'ubuntu': return [ "ubuntu1204", "ubuntu1404", "ubuntu1604", ] elif self.n == 'debian': - return [ "debian71", "debian81" ] + return [ "debian71", "debian81", "debian92" ] else: raise Exception("BUG: unsupported platform?") |