From 6e596fff1176ce33190b6b54b067f5333b08c6df Mon Sep 17 00:00:00 2001 From: Rajith Muditha Attapattu Date: Fri, 16 Nov 2007 17:32:10 +0000 Subject: Martin found an issue with the Mgt Console after we pruned the deps list and Martin had to make a slight update to the pom. So we have to recreate the RCs again from a new tag git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/tags/M2@595752 13f79535-47bb-0310-9956-ffa450edef68 --- Final/java/common/bin/qpid-run | 238 ----------------------------------------- 1 file changed, 238 deletions(-) delete mode 100644 Final/java/common/bin/qpid-run (limited to 'Final/java/common/bin') diff --git a/Final/java/common/bin/qpid-run b/Final/java/common/bin/qpid-run deleted file mode 100644 index c9e37b21a1..0000000000 --- a/Final/java/common/bin/qpid-run +++ /dev/null @@ -1,238 +0,0 @@ -#!/bin/bash -# -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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. -# - -# Test if we're running on cygwin. -cygwin=false -if [[ "$(uname -a | fgrep Cygwin)" != "" ]]; then - cygwin=true -fi - -die() { - if [[ $1 = -usage ]]; then - shift - usage=true - else - usage=false - fi - echo "$@" - $usage && echo - $usage && usage - exit 1 -} - -if [ -z $AMQJ_LOGGING_LEVEL ]; then - export AMQJ_LOGGING_LEVEL=info -fi - -if [ -z "$QPID_HOME" ]; then - die "QPID_HOME must be set" -fi - -if [ -z "$QPID_WORK" ]; then - echo Setting QPID_WORK to $HOME as default - QPID_WORK=$HOME -fi - -if $cygwin; then - QPID_HOME=$(cygpath -w $QPID_HOME) - QPID_WORK=$(cygpath -w $QPID_WORK) -fi - -#Set the default system properties that we'll use now that they have -#all been initialised -SYSTEM_PROPS="-Damqj.logging.level=$AMQJ_LOGGING_LEVEL -DQPID_HOME=$QPID_HOME -DQPID_WORK=$QPID_WORK" - -#If logprefix or logsuffix set to use PID make that happen -#Otherwise just pass the value through for these props -#Using X character to avoid probs with empty strings -if [ -n "$QPID_LOG_PREFIX" ]; then - if [ "X$QPID_LOG_PREFIX" = "XPID" ]; then - echo Using pid in qpid log name prefix - LOG_PREFIX=" -Dlogprefix=$$" - else - echo Using qpid logprefix property - LOG_PREFIX=" -Dlogprefix=$QPID_LOG_PREFIX" - fi - SYSTEM_PROPS="${SYSTEM_PROPS} ${LOG_PREFIX}" -fi - -if [ -n "$QPID_LOG_SUFFIX" ]; then - if [ "X$QPID_LOG_SUFFIX" = "XPID" ]; then - echo Using pid in qpid log name suffix - LOG_SUFFIX=" -Dlogsuffix=$$" - else - echo Using qpig logsuffix property - LOG_SUFFIX=" -Dlogsuffix=$QPID_LOG_SUFFIX" - fi - SYSTEM_PROPS="${SYSTEM_PROPS} ${LOG_SUFFIX}" -fi - -echo System Properties set to $SYSTEM_PROPS - -program=$(basename $0) -sourced=${BASH_SOURCE[0]} -if [[ -z ${sourced:-''} ]]; then - sourced=$(which qpid-run) || ${QPID_HOME}/bin/qpid-run -fi - -usage() { - echo Usage: $program ... "[-run: