diff options
-rwxr-xr-x | qpid/java/broker/bin/qpid-server | 6 | ||||
-rwxr-xr-x | qpid/java/common/bin/qpid-run | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/qpid/java/broker/bin/qpid-server b/qpid/java/broker/bin/qpid-server index 18b43bee13..5c7e4182b6 100755 --- a/qpid/java/broker/bin/qpid-server +++ b/qpid/java/broker/bin/qpid-server @@ -27,6 +27,12 @@ if [ -z "$QPID_WORK" ]; then QPID_WORK=$HOME fi +# Set to help us get round the manifold problems of ps/pgrep on various +# platforms which gather up to prevent qpid_stop from working ..... +if [ -z "$QPID_PNAME" ]; then + export QPID_PNAME=" -DPNAME=QPBRKR" +fi + # Set classpath to include Qpid jar with all required jars in manifest QPID_LIBS=$QPID_HOME/lib/qpid-all.jar:$QPID_HOME/lib/bdbstore-launch.jar diff --git a/qpid/java/common/bin/qpid-run b/qpid/java/common/bin/qpid-run index 63bb648fd8..15d88992df 100755 --- a/qpid/java/common/bin/qpid-run +++ b/qpid/java/common/bin/qpid-run @@ -56,12 +56,6 @@ if [ -z $AMQJ_LOGGING_LEVEL ]; then export AMQJ_LOGGING_LEVEL=info fi -#Set to help us get round the manifold problems of ps/pgrep on various -#platforms which gather up to prevent qpid_stop from working ..... -if [ -z "$QPID_PNAME" ]; then - export QPID_PNAME=" -DPNAME=QPBRKR" -fi - if [ -z "$QPID_HOME" ]; then export QPID_HOME=$(dirname $(dirname $(readlink -f $0))) export PATH=${PATH}:${QPID_HOME}/bin |