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:30:53 UTC

svn commit: r1132062 - /incubator/mesos/trunk/ec2/deploy.lucid64/root/mesos-ec2/mesos-daemon

Author: benh
Date: Sun Jun  5 08:30:53 2011
New Revision: 1132062

URL: http://svn.apache.org/viewvc?rev=1132062&view=rev
Log:
Fixed a bug introduced by copy/paste from old scripts

Modified:
    incubator/mesos/trunk/ec2/deploy.lucid64/root/mesos-ec2/mesos-daemon

Modified: incubator/mesos/trunk/ec2/deploy.lucid64/root/mesos-ec2/mesos-daemon
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/ec2/deploy.lucid64/root/mesos-ec2/mesos-daemon?rev=1132062&r1=1132061&r2=1132062&view=diff
==============================================================================
--- incubator/mesos/trunk/ec2/deploy.lucid64/root/mesos-ec2/mesos-daemon (original)
+++ incubator/mesos/trunk/ec2/deploy.lucid64/root/mesos-ec2/mesos-daemon Sun Jun  5 08:30:53 2011
@@ -18,7 +18,7 @@ PROGRAM=$1
 shift
 
 EXTRA_OPTS=""
-if [ "$PROGRAM" == "nexus-slave" ]; then
+if [ "$PROGRAM" == "mesos-slave" ]; then
   # Compute CPU resources (if not specified).
   if [[ "$*" != *--cpus* ]]; then
     CPUS=`grep processor /proc/cpuinfo | wc -l`