summaryrefslogtreecommitdiff
path: root/packaging/common
diff options
context:
space:
mode:
authorAlexandru Scvortov <alexandru@rabbitmq.com>2011-09-26 18:01:09 +0100
committerAlexandru Scvortov <alexandru@rabbitmq.com>2011-09-26 18:01:09 +0100
commit2286992532d8a4907ba935e232c329a48cdccd0e (patch)
tree4a54676cdee266a53f1ee5831858abcd7b398f30 /packaging/common
parent44cb60e5b5bbf832b7bbd4d0220b6048d1685ceb (diff)
downloadrabbitmq-server-2286992532d8a4907ba935e232c329a48cdccd0e.tar.gz
actually do the backout
Diffstat (limited to 'packaging/common')
-rw-r--r--packaging/common/rabbitmq-script-wrapper6
-rw-r--r--packaging/common/rabbitmq-simple-script-wrapper20
2 files changed, 3 insertions, 23 deletions
diff --git a/packaging/common/rabbitmq-script-wrapper b/packaging/common/rabbitmq-script-wrapper
index 23d2a06c..0436f546 100644
--- a/packaging/common/rabbitmq-script-wrapper
+++ b/packaging/common/rabbitmq-script-wrapper
@@ -29,10 +29,10 @@ cd /var/lib/rabbitmq
SCRIPT=`basename $0`
-if [ `id -u` = 0 ] ; then
- @SU_RABBITMQ_SH_C@ "/usr/lib/rabbitmq/bin/${SCRIPT} ${CMDLINE}"
-elif [ `id -u` = `id -u rabbitmq` ] ; then
+if [ `id -u` = `id -u rabbitmq` -o "$SCRIPT" = "rabbitmq-plugins" ] ; then
/usr/lib/rabbitmq/bin/${SCRIPT} "$@"
+elif [ `id -u` = 0 ] ; then
+ @SU_RABBITMQ_SH_C@ "/usr/lib/rabbitmq/bin/${SCRIPT} ${CMDLINE}"
else
/usr/lib/rabbitmq/bin/${SCRIPT}
echo
diff --git a/packaging/common/rabbitmq-simple-script-wrapper b/packaging/common/rabbitmq-simple-script-wrapper
deleted file mode 100644
index a6676ab5..00000000
--- a/packaging/common/rabbitmq-simple-script-wrapper
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-## The contents of this file are subject to the Mozilla Public License
-## Version 1.1 (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.mozilla.org/MPL/
-##
-## Software distributed under the License is distributed on an "AS IS"
-## basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
-## the License for the specific language governing rights and
-## limitations under the License.
-##
-## The Original Code is RabbitMQ.
-##
-## The Initial Developer of the Original Code is VMware, Inc.
-## Copyright (c) 2011 VMware, Inc. All rights reserved.
-##
-
-cd /var/lib/rabbitmq
-
-/usr/lib/rabbitmq/bin/$(basename $0) "$@"