summaryrefslogtreecommitdiff
path: root/packaging/common
diff options
context:
space:
mode:
authorRob Harrop <rob@rabbitmq.com>2010-11-23 10:03:44 +0000
committerRob Harrop <rob@rabbitmq.com>2010-11-23 10:03:44 +0000
commite64d8aa70ef29db76b40ecffe9d24902e0444e12 (patch)
tree76703edd929f2928489d2d05e48807370b8a3eb4 /packaging/common
parent64ec063f6d7b7f9e0da98af6b49918490815baf6 (diff)
parentfbf2bdc95361fdef5ad5b55774b661bc6ccaee1e (diff)
downloadrabbitmq-server-git-e64d8aa70ef29db76b40ecffe9d24902e0444e12.tar.gz
Merge bug23513 into default
Diffstat (limited to 'packaging/common')
-rw-r--r--packaging/common/rabbitmq-asroot-script-wrapper45
1 files changed, 0 insertions, 45 deletions
diff --git a/packaging/common/rabbitmq-asroot-script-wrapper b/packaging/common/rabbitmq-asroot-script-wrapper
deleted file mode 100644
index 693a6f0b83..0000000000
--- a/packaging/common/rabbitmq-asroot-script-wrapper
+++ /dev/null
@@ -1,45 +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 Developers of the Original Code are LShift Ltd,
-## Cohesive Financial Technologies LLC, and Rabbit Technologies Ltd.
-##
-## Portions created before 22-Nov-2008 00:00:00 GMT by LShift Ltd,
-## Cohesive Financial Technologies LLC, or Rabbit Technologies Ltd
-## are Copyright (C) 2007-2008 LShift Ltd, Cohesive Financial
-## Technologies LLC, and Rabbit Technologies Ltd.
-##
-## Portions created by LShift Ltd are Copyright (C) 2007-2010 LShift
-## Ltd. Portions created by Cohesive Financial Technologies LLC are
-## Copyright (C) 2007-2010 Cohesive Financial Technologies
-## LLC. Portions created by Rabbit Technologies Ltd are Copyright
-## (C) 2007-2010 Rabbit Technologies Ltd.
-##
-## All Rights Reserved.
-##
-## Contributor(s): ______________________________________.
-##
-
-cd /var/lib/rabbitmq
-
-SCRIPT=`basename $0`
-
-if [ `id -u` = 0 ] ; then
- /usr/lib/rabbitmq/bin/${SCRIPT} "$@"
-else
- echo
- echo "Only root should run ${SCRIPT}"
- echo
- exit 1
-fi
-