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 2011/06/05 10:55:22 UTC

svn commit: r1132180 - /incubator/mesos/trunk/ec2/deploy.centos64/root/mesos-ec2/hypertable/Capfile

Author: benh
Date: Sun Jun  5 08:55:21 2011
New Revision: 1132180

URL: http://svn.apache.org/viewvc?rev=1132180&view=rev
Log:
Updated Hypertable Capfile

Modified:
    incubator/mesos/trunk/ec2/deploy.centos64/root/mesos-ec2/hypertable/Capfile

Modified: incubator/mesos/trunk/ec2/deploy.centos64/root/mesos-ec2/hypertable/Capfile
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/ec2/deploy.centos64/root/mesos-ec2/hypertable/Capfile?rev=1132180&r1=1132179&r2=1132180&view=diff
==============================================================================
--- incubator/mesos/trunk/ec2/deploy.centos64/root/mesos-ec2/hypertable/Capfile (original)
+++ incubator/mesos/trunk/ec2/deploy.centos64/root/mesos-ec2/hypertable/Capfile Sun Jun  5 08:55:21 2011
@@ -189,6 +189,7 @@ task :start do
     start_hyperspace
     start_master
     start_slaves
+    start_master_thriftbroker
   end
 end
 
@@ -210,6 +211,14 @@ task :start_master, :roles => :master do
   CMD
 end
 
+desc "Starts ThriftBroker on master."
+task :start_master_thriftbroker, :roles => :master do
+  run <<-CMD
+   #{install_dir}/current/bin/start-thriftbroker.sh \
+      #{config_option}
+  CMD
+end
+
 desc "Starts slave processes."
 task :start_slaves, :roles => :slave do
   run <<-CMD