Fix redis-shutdown to handle password-protected instances

This commit is contained in:
Haikel Guemar 2016-02-08 11:57:08 +01:00
parent c4cdeb229e
commit ffd00fb400
1 changed files with 6 additions and 1 deletions

View File

@ -17,6 +17,7 @@ CONFIG_FILE="/etc/$SERVICE_NAME.conf"
# Use awk to retrieve host, port from config file
HOST=`awk '/^[[:blank:]]*bind/ { print $2 }' $CONFIG_FILE`
PORT=`awk '/^[[:blank:]]*port/ { print $2 }' $CONFIG_FILE`
PASS=`awk '/^[[:blank:]]*requirepass/ { print $2 }' $CONFIG_FILE`
# Just in case, use default host, port
HOST=${HOST:-127.0.0.1}
@ -26,5 +27,9 @@ else
PORT=${PORT:-26739}
fi
# Setup additional parameters
# e.g password-protected redis instances
[ -z "$PASS" ] || ADDITIONAL_PARAMS="-a $PASS"
# shutdown the service properly
$REDIS_CLI -h $HOST -p $PORT shutdown
$REDIS_CLI -h $HOST -p $PORT $ADDITIONAL_PARAMS shutdown