From 8cf42405c9b78fb72cc3c3d1238a729826d2f549 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 5 Aug 2015 15:03:36 +0200 Subject: make redis-shutdown more robust, fix #22 --- redis-shutdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'redis-shutdown') diff --git a/redis-shutdown b/redis-shutdown index e03d9a6..f0abf29 100644 --- a/redis-shutdown +++ b/redis-shutdown @@ -15,8 +15,8 @@ fi 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` +HOST=`awk '/^[[:blank:]]*bind/ { print $2 }' $CONFIG_FILE | tail -n1` +PORT=`awk '/^[[:blank:]]*port/ { print $2 }' $CONFIG_FILE | tail -n1` # Just in case, use default host, port HOST=${HOST:-127.0.0.1} -- cgit