diff options
author | Audrius Kažukauskas <audrius@neutrino.lt> | 2017-09-03 15:37:47 +0300 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-09-09 06:56:45 +0700 |
commit | b54b8c23b645817a3afd728ec45c60da33be473b (patch) | |
tree | 027bc723ffc00a2e8bccefe171dd9820de3edcf0 /system/redis/redis.SlackBuild | |
parent | 8f75a30869fea3178fbc47fe056525c4b9059b77 (diff) | |
download | slackbuilds-b54b8c23b645817a3afd728ec45c60da33be473b.tar.gz |
system/redis: Updated for version 4.0.1.
Signed-off-by: Audrius Kažukauskas <audrius@neutrino.lt>
Diffstat (limited to 'system/redis/redis.SlackBuild')
-rw-r--r-- | system/redis/redis.SlackBuild | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/system/redis/redis.SlackBuild b/system/redis/redis.SlackBuild index a8d705b197..787f721bf4 100644 --- a/system/redis/redis.SlackBuild +++ b/system/redis/redis.SlackBuild @@ -24,7 +24,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=redis -VERSION=${VERSION:-3.2.9} +VERSION=${VERSION:-4.0.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -55,7 +55,7 @@ else LIBDIRSUFFIX="" fi -set -eu +set -e rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT @@ -87,7 +87,6 @@ sed -i \ -e 's|^daemonize no|daemonize yes|' \ -e 's|^dir \.|dir /var/lib/redis|' \ -e 's|^logfile ""|logfile /var/log/redis/redis.log|' \ - -e 's|^# bind 127.0.0.1$|bind 127.0.0.1|' \ $PKG/etc/redis/redis.conf.new install -D -m 0644 sentinel.conf $PKG/etc/redis/sentinel.conf.new |