Compare commits

...

2 Commits
master ... f21

Author SHA1 Message Date
Haikel Guemar 317e429f80 Upstream 2.8.21
- Fix Lua sandbox escape and arbitrary code execution (RHBZ #1228331)
2015-06-05 02:20:19 +02:00
Haikel Guemar 3c8fe4a701 Fix redis-shutdown on multiple NIC setup (RHBZ #1201237) 2015-03-27 00:09:07 +01:00
4 changed files with 16 additions and 6 deletions

1
.gitignore vendored
View File

@ -20,3 +20,4 @@
/redis-2.8.17.tar.gz
/redis-2.8.18.tar.gz
/redis-2.8.19.tar.gz
/redis-2.8.21.tar.gz

View File

@ -14,10 +14,12 @@ fi
# Get the proper config file based on service name
CONFIG_FILE="/etc/$SERVICE_NAME.conf"
# Use awk to retrieve port from config file
# 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`
# Just in case, use default port
# Just in case, use default host, port
HOST=${HOST:-127.0.0.1}
if [ "$SERVICE_NAME" = redis ]; then
PORT=${PORT:-6379}
else
@ -25,4 +27,4 @@ else
fi
# shutdown the service properly
$REDIS_CLI -p $PORT shutdown
$REDIS_CLI -h $HOST -p $PORT shutdown

View File

@ -11,8 +11,8 @@
%global with_tests %{?_with_tests:1}%{!?_with_tests:0}
Name: redis
Version: 2.8.19
Release: 1%{?dist}.1
Version: 2.8.21
Release: 1%{?dist}
Summary: A persistent key-value database
License: BSD
URL: http://redis.io
@ -242,6 +242,13 @@ fi
%changelog
* Thu Jun 04 2015 Haïkel Guémar <hguemar@fedoraproject.org> - 2.8.21-1
- Upstream 2.8.21
- Fix Lua sandbox escape and arbitrary code execution (RHBZ #1228331)
* Thu Mar 26 2015 Haïkel Guémar <hguemar@fedoraproject.org> - 2.8.19-2
- Fix redis-shutdown on multiple NIC setup (RHBZ #1201237)
* Fri Feb 27 2015 Haïkel Guémar <hguemar@fedoraproject.org> - 2.8.19-1
- Upstream 2.8.19 (RHBZ #1175232)
- Fix permissions for tmpfiles (RHBZ #1182913)

View File

@ -1 +1 @@
3794107224043465603f48941f5c86a7 redis-2.8.19.tar.gz
d059e2bf5315e2488ab679e09e55a9e7 redis-2.8.21.tar.gz