2 ## The contents of this file are subject to the Mozilla Public License
3 ## Version 1.1 (the "License"); you may not use this file except in
4 ## compliance with the License. You may obtain a copy of the License
5 ## at http://www.mozilla.org/MPL/
7 ## Software distributed under the License is distributed on an "AS IS"
8 ## basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
9 ## the License for the specific language governing rights and
10 ## limitations under the License.
12 ## The Original Code is RabbitMQ.
14 ## The Initial Developer of the Original Code is VMware, Inc.
15 ## Copyright (c) 2007-2013 VMware, Inc. All rights reserved.
18 # Get default settings with user overrides for (RABBITMQ_)<var_name>
19 # Non-empty defaults should be set in rabbitmq-env
20 . `dirname $0`/rabbitmq-env
22 ##--- Set environment vars RABBITMQ_<var_name> to defaults if not set
24 [ "x" = "x$RABBITMQ_NODENAME" ] && RABBITMQ_NODENAME=${NODENAME}
25 [ "x" = "x$RABBITMQ_CTL_ERL_ARGS" ] && RABBITMQ_CTL_ERL_ARGS=${CTL_ERL_ARGS}
27 ##--- End of overridden <var_name> variables
30 -pa "${RABBITMQ_HOME}/ebin" \
33 ${RABBITMQ_CTL_ERL_ARGS} \
34 -sname rabbitmqctl$$ \
35 -boot "${CLEAN_BOOT_FILE}" \
36 -s rabbit_control_main \
37 -nodename $RABBITMQ_NODENAME \