From 059e1dfff0c0dac62e8aab408bb684f33d7da3a3 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 8 Feb 2016 12:51:06 +0100 Subject: redis: Fix redis-shutdown to handle password-protected instances shutdown, fix #31 --- redis-shutdown | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'redis-shutdown') diff --git a/redis-shutdown b/redis-shutdown index f0abf29..57f21af 100644 --- a/redis-shutdown +++ b/redis-shutdown @@ -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 | tail -n1` PORT=`awk '/^[[:blank:]]*port/ { print $2 }' $CONFIG_FILE | tail -n1` +PASS=`awk '/^[[:blank:]]*requirepass/ { print $2 }' $CONFIG_FILE | tail -n1` # 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 -- cgit