You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2019/05/14 10:17:26 UTC

[mesos] branch master updated (26fa2e5 -> a9a2aca)

This is an automated email from the ASF dual-hosted git repository.

bennoe pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git.


    from 26fa2e5  Avoided logging quota headroom info when there is no quota set.
     new 7ff4263  Enabled launcher sealing for RPM packages.
     new a9a2aca  Updated URL in CentOS 6 Dockerfile.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 support/packaging/centos/centos6.dockerfile | 2 +-
 support/packaging/centos/mesos.spec         | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)


[mesos] 02/02: Updated URL in CentOS 6 Dockerfile.

Posted by be...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

bennoe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit a9a2acabd03181865055b77cf81e7bb310b236d6
Author: Benno Evers <be...@mesosphere.com>
AuthorDate: Tue May 14 11:52:59 2019 +0200

    Updated URL in CentOS 6 Dockerfile.
    
    The link was pointing to a rpm package that was apparently
    replaced on the upstream file server.
    
    Review: https://reviews.apache.org/r/70639
---
 support/packaging/centos/centos6.dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/packaging/centos/centos6.dockerfile b/support/packaging/centos/centos6.dockerfile
index ddbeb29..73c9637 100644
--- a/support/packaging/centos/centos6.dockerfile
+++ b/support/packaging/centos/centos6.dockerfile
@@ -27,7 +27,7 @@ RUN curl -sSL \
 
 # PostgreSQL repo for libevent2.
 RUN  rpm -Uvh --replacepkgs \
-      http://yum.postgresql.org/9.5/redhat/rhel-6-x86_64/pgdg-centos95-9.5-2.noarch.rpm
+      http://yum.postgresql.org/9.5/redhat/rhel-6-x86_64/pgdg-centos95-9.5-3.noarch.rpm
 
 # Setup JDK
 RUN echo -e 'export JAVA_HOME=/usr/lib/jvm/java-openjdk' >> /etc/profile.d/java-home.sh


[mesos] 01/02: Enabled launcher sealing for RPM packages.

Posted by be...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

bennoe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit 7ff4263c371f8a51551199c694837cf371923137
Author: Benjamin Bannier <bb...@apache.org>
AuthorDate: Mon Apr 8 14:37:32 2019 +0200

    Enabled launcher sealing for RPM packages.
    
    We enable this flag since with it disabled certain public functions
    are not available making it hard to e.g., write modules against this
    version of Mesos.
    
    While launcher sealing depends on a recent kernel, the platform we
    build RPMs for already satisfies the requirements.
    
    Review: https://reviews.apache.org/r/70295
---
 support/packaging/centos/mesos.spec | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/support/packaging/centos/mesos.spec b/support/packaging/centos/mesos.spec
index 54f7393..f1ba977 100644
--- a/support/packaging/centos/mesos.spec
+++ b/support/packaging/centos/mesos.spec
@@ -87,10 +87,13 @@ This package provides files for developing Mesos frameworks/modules.
 %setup -q
 
 %build
+%{!?el6:%define launcher_sealing --enable-launcher-sealing}
+
 %configure \
     --enable-optimize \
     --disable-python-dependency-install \
     --enable-install-module-dependencies \
+    %{launcher_sealing} \
     --enable-libevent \
     --enable-ssl \
     --enable-hardening \