Repository: aurora Updated Branches: refs/heads/master a45a8ee1a -> 7f81411da
Remove defunct scheduler-local.sh. Reviewed at https://reviews.apache.org/r/37041/ Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/7f81411d Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/7f81411d Diff: http://git-wip-us.apache.org/repos/asf/aurora/diff/7f81411d Branch: refs/heads/master Commit: 7f81411da4dde69b891839ab4cda97a969a86325 Parents: a45a8ee Author: Bill Farner <[email protected]> Authored: Mon Aug 3 09:41:52 2015 -0700 Committer: Bill Farner <[email protected]> Committed: Mon Aug 3 09:41:52 2015 -0700 ---------------------------------------------------------------------- examples/scheduler/scheduler-local.sh | 63 ------------------------------ 1 file changed, 63 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/aurora/blob/7f81411d/examples/scheduler/scheduler-local.sh ---------------------------------------------------------------------- diff --git a/examples/scheduler/scheduler-local.sh b/examples/scheduler/scheduler-local.sh deleted file mode 100755 index 5b5d2fc..0000000 --- a/examples/scheduler/scheduler-local.sh +++ /dev/null @@ -1,63 +0,0 @@ -#!/usr/bin/env bash -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -# An example scheduler launch script. -# It assumes a local ZooKeeper ensemble running at localhost:2181 and a master under /mesos/master - -# Location where aurora-scheduler.zip was unpacked. -AURORA_SCHEDULER_HOME=/usr/local/aurora-scheduler - -# Flags that control the behavior of the JVM. -JAVA_OPTS=( - -server - -Xmx2g - -Xms2g - - # Location of libmesos-XXXX.so / libmesos-XXXX.dylib - -Djava.library.path=/usr/local/lib -) - -# Flags control the behavior of the Aurora scheduler. -# For a full list of available flags, run bin/aurora-scheduler -help -AURORA_FLAGS=( - -cluster_name=us-east - - # Ports to listen on. - -http_port=8081 - - -native_log_quorum_size=1 - - -zk_endpoints=localhost:2181 - -mesos_master_address=zk://localhost:2181/mesos/master - - -serverset_path=/aurora/scheduler - - -native_log_zk_group_path=/aurora/replicated-log - - -native_log_file_path="$AURORA_SCHEDULER_HOME/db" - -backup_dir="$AURORA_SCHEDULER_HOME/backups" - - # TODO(Kevin Sweeney): Point these to real URLs. - -thermos_executor_path=/dev/null - - -vlog=INFO - -logtostderr -) - -# Environment variables control the behavior of the Mesos scheduler driver (libmesos). -export GLOG_v=0 -export LIBPROCESS_PORT=8083 - -JAVA_OPTS="${JAVA_OPTS[*]}" exec "$AURORA_SCHEDULER_HOME/bin/aurora-scheduler" "${AURORA_FLAGS[@]}"
