summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2014-06-09 14:34:53 +0100
committerSimon MacMullen <simon@rabbitmq.com>2014-06-09 14:34:53 +0100
commit4e421e5c5bb6293250a2b404400de9c6bd06c1d6 (patch)
tree36b53d7b77e5750fd2a669eaab91c50532ec263d
parent5f81655b7f7cc8e0717fe911b2757f47dcd1ff6b (diff)
downloadrabbitmq-server-bug24759.tar.gz
Ensure we don't fail if that file is missing.bug24759
-rwxr-xr-xscripts/rabbitmq-env2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/rabbitmq-env b/scripts/rabbitmq-env
index 2378e5e3..b7741670 100755
--- a/scripts/rabbitmq-env
+++ b/scripts/rabbitmq-env
@@ -52,4 +52,4 @@ if [ -f /etc/rabbitmq/rabbitmq.conf ] && \
fi
## Get configuration variables from the configure environment file
-[ -f ${CONF_ENV_FILE} ] && . ${CONF_ENV_FILE}
+[ -f ${CONF_ENV_FILE} ] && . ${CONF_ENV_FILE} || true