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 2013/08/02 01:51:27 UTC

[1/2] git commit: Don't make the mesos-*-flags.sh executable.

Updated Branches:
  refs/heads/master 3bc42c746 -> 2133ba99a


Don't make the mesos-*-flags.sh executable.

Review: https://reviews.apache.org/r/13205


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/cf9b7715
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/cf9b7715
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/cf9b7715

Branch: refs/heads/master
Commit: cf9b771578021130d54bd61d84468a6d402aab78
Parents: 3bc42c7
Author: Benjamin Hindman <be...@gmail.com>
Authored: Thu Aug 1 16:34:36 2013 -0700
Committer: Benjamin Hindman <be...@gmail.com>
Committed: Thu Aug 1 16:43:37 2013 -0700

----------------------------------------------------------------------
 configure.ac | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/cf9b7715/configure.ac
----------------------------------------------------------------------
diff --git a/configure.ac b/configure.ac
index 6436c18..4dc1cc7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -88,10 +88,10 @@ AC_CONFIG_FILES([bin/mesos-local.sh], [chmod +x bin/mesos-local.sh])
 AC_CONFIG_FILES([bin/mesos-master.sh], [chmod +x bin/mesos-master.sh])
 AC_CONFIG_FILES([bin/mesos-slave.sh], [chmod +x bin/mesos-slave.sh])
 AC_CONFIG_FILES([bin/mesos-tests.sh], [chmod +x bin/mesos-tests.sh])
-AC_CONFIG_FILES([bin/mesos-local-flags.sh], [chmod +x bin/mesos-local-flags.sh])
-AC_CONFIG_FILES([bin/mesos-master-flags.sh], [chmod +x bin/mesos-master-flags.sh])
-AC_CONFIG_FILES([bin/mesos-slave-flags.sh], [chmod +x bin/mesos-slave-flags.sh])
-AC_CONFIG_FILES([bin/mesos-tests-flags.sh], [chmod +x bin/mesos-tests-flags.sh])
+AC_CONFIG_FILES([bin/mesos-local-flags.sh])
+AC_CONFIG_FILES([bin/mesos-master-flags.sh])
+AC_CONFIG_FILES([bin/mesos-slave-flags.sh])
+AC_CONFIG_FILES([bin/mesos-tests-flags.sh])
 AC_CONFIG_FILES([bin/gdb-mesos-local.sh], [chmod +x bin/gdb-mesos-local.sh])
 AC_CONFIG_FILES([bin/gdb-mesos-master.sh], [chmod +x bin/gdb-mesos-master.sh])
 AC_CONFIG_FILES([bin/gdb-mesos-slave.sh], [chmod +x bin/gdb-mesos-slave.sh])


[2/2] git commit: Use 'exec' to launch mesos-slave from wrapper.

Posted by be...@apache.org.
Use 'exec' to launch mesos-slave from wrapper.

Review: https://reviews.apache.org/r/13206


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/2133ba99
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/2133ba99
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/2133ba99

Branch: refs/heads/master
Commit: 2133ba99acd9421a6b47cb967bb3e660875f4307
Parents: cf9b771
Author: Benjamin Hindman <be...@gmail.com>
Authored: Thu Aug 1 16:33:59 2013 -0700
Committer: Benjamin Hindman <be...@gmail.com>
Committed: Thu Aug 1 16:43:49 2013 -0700

----------------------------------------------------------------------
 bin/mesos-slave.sh.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/2133ba99/bin/mesos-slave.sh.in
----------------------------------------------------------------------
diff --git a/bin/mesos-slave.sh.in b/bin/mesos-slave.sh.in
index d1e7bc1..be4dd26 100644
--- a/bin/mesos-slave.sh.in
+++ b/bin/mesos-slave.sh.in
@@ -21,4 +21,4 @@
 
 . @abs_top_srcdir@/bin/mesos-slave-flags.sh
 
-@abs_top_builddir@/src/mesos-slave "${@}"
+exec @abs_top_builddir@/src/mesos-slave "${@}"