summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErnie Hershey <ernie.hershey@10gen.com>2014-09-02 11:49:07 -0400
committerErnie Hershey <ernie.hershey@10gen.com>2014-09-18 17:48:11 -0400
commitf27db81a93a11e6191c24738a92d6873860731c8 (patch)
treeeb459638d699214e642fd814891eec163999c95d
parentfe9de6e07e646b9844cb241d4e202cc2b0275225 (diff)
downloadmongo-f27db81a93a11e6191c24738a92d6873860731c8.tar.gz
SERVER-13243 Add Ubuntu 14.04 Enterprise .deb
(cherry picked from commit 097039445a16436ee0e992b1613c7b0b6b269a2d)
-rwxr-xr-xbuildscripts/packager-enterprise.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/buildscripts/packager-enterprise.py b/buildscripts/packager-enterprise.py
index ec0c8b57b6c..b24a65e9448 100755
--- a/buildscripts/packager-enterprise.py
+++ b/buildscripts/packager-enterprise.py
@@ -138,6 +138,9 @@ class Distro(object):
repo/apt/ubuntu/dists/precise/mongodb-enterprise/2.5/multiverse/binary-amd64
repo/apt/ubuntu/dists/precise/mongodb-enterprise/2.5/multiverse/binary-i386
+ repo/apt/ubuntu/dists/trusty/mongodb-enterprise/2.5/multiverse/binary-amd64
+ repo/apt/ubuntu/dists/trusty/mongodb-enterprise/2.5/multiverse/binary-i386
+
repo/apt/debian/dists/wheezy/mongodb-enterprise/2.5/main/binary-amd64
repo/apt/debian/dists/wheezy/mongodb-enterprise/2.5/main/binary-i386
@@ -179,6 +182,8 @@ class Distro(object):
elif self.n == 'ubuntu':
if build_os == 'ubuntu1204':
return "precise"
+ elif build_os == 'ubuntu1404':
+ return "trusty"
else:
raise Exception("unsupported build_os: %s" % build_os)
elif self.n == 'debian':
@@ -199,14 +204,14 @@ class Distro(object):
def build_os(self):
"""Return the build os label in the binary package to download ("rhel57", "rhel62" and "rhel70"
- for redhat, "ubuntu1204" for Ubuntu, "debian71" for Debian, and "suse11" for SUSE)"""
+ for redhat, "ubuntu1204" and "ubuntu1404" for Ubuntu, "debian71" for Debian, and "suse11" for SUSE)"""
if re.search("(suse)", self.n):
return [ "suse11" ]
if re.search("(redhat|fedora|centos)", self.n):
return [ "rhel70", "rhel62", "rhel57" ]
elif self.n == 'ubuntu':
- return [ "ubuntu1204" ]
+ return [ "ubuntu1204", "ubuntu1404" ]
elif self.n == 'debian':
return [ "debian71" ]
else: