Hello community, here is the log from the commit of package redis for openSUSE:Factory checked in at 2015-06-16 14:05:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/redis (Old) and /work/SRC/openSUSE:Factory/.redis.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "redis" Changes: -------- --- /work/SRC/openSUSE:Factory/redis/redis.changes 2015-06-08 08:31:28.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.redis.new/redis.changes 2015-06-16 14:05:19.000000000 +0200 @@ -1,0 +2,6 @@ +Mon Jun 15 11:07:16 UTC 2015 - mrueck...@suse.de + +- also pass the bind address to the redis-cli for shutdown + (boo#835815) + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ redis-initscript.patch ++++++ --- /var/tmp/diff_new_pack.DZ7KEI/_old 2015-06-16 14:05:20.000000000 +0200 +++ /var/tmp/diff_new_pack.DZ7KEI/_new 2015-06-16 14:05:20.000000000 +0200 @@ -1,6 +1,8 @@ ---- utils/redis_init_script.orig 2012-07-31 16:48:33.000000000 +0200 -+++ utils/redis_init_script 2012-11-20 15:05:55.000000000 +0100 -@@ -1,42 +1,131 @@ +Index: utils/redis_init_script +=================================================================== +--- utils/redis_init_script.orig ++++ utils/redis_init_script +@@ -1,42 +1,133 @@ #!/bin/sh + +# System startup script for Redis for OpenSUSE >= 11.4 @@ -89,9 +91,11 @@ + CLI='/usr/bin/redis-cli' + PASS=`grep ^requirepass $CONFIG | awk '{print $2}'` + PORT=`grep ^port $CONFIG | awk '{print $2}'` ++ BIND=`grep ^bind $CONFIG | awk '{print $2}'` + + CLI="$CLI -p $PORT" + [ -n "$PASS" ] && CLI="$CLI -a $PASS" ++ [ -n "$BIND" ] && CLI="$CLI -h $BIND" + + $CLI shutdown + echo -n "Waiting... "