summaryrefslogtreecommitdiff
path: root/dev-db/redis/files/redis-3.2.0-config.patch
diff options
context:
space:
mode:
authorUltrabug <ultrabug@gentoo.org>2016-06-14 09:55:59 +0200
committerUltrabug <ultrabug@gentoo.org>2016-06-14 09:56:20 +0200
commitabe6df90c519c0e5bc4bde7f2d9eea49b6acd13c (patch)
treed48ea9867aad430dcb1c1d6310ceb35d148f5145 /dev-db/redis/files/redis-3.2.0-config.patch
parent55a2ee147e630e431a384d535a9e138c60940cc3 (diff)
downloadgentoo-abe6df90c519c0e5bc4bde7f2d9eea49b6acd13c.tar.gz
gentoo-abe6df90c519c0e5bc4bde7f2d9eea49b6acd13c.tar.bz2
gentoo-abe6df90c519c0e5bc4bde7f2d9eea49b6acd13c.zip
dev-db/redis: version bump fixes #583168
Package-Manager: portage-2.2.27
Diffstat (limited to 'dev-db/redis/files/redis-3.2.0-config.patch')
-rw-r--r--dev-db/redis/files/redis-3.2.0-config.patch37
1 files changed, 37 insertions, 0 deletions
diff --git a/dev-db/redis/files/redis-3.2.0-config.patch b/dev-db/redis/files/redis-3.2.0-config.patch
new file mode 100644
index 000000000000..8d93a0e7b62a
--- /dev/null
+++ b/dev-db/redis/files/redis-3.2.0-config.patch
@@ -0,0 +1,37 @@
+--- a/redis.conf 2016-05-06 09:11:36.000000000 +0200
++++ b/redis.conf 2016-06-14 09:20:05.980855432 +0200
+@@ -146,7 +146,7 @@
+ #
+ # Creating a pid file is best effort: if Redis is not able to create it
+ # nothing bad happens, the server will start and run normally.
+-pidfile /var/run/redis.pid
++pidfile /run/redis/redis.pid
+
+ # Specify the server verbosity level.
+ # This can be one of:
+@@ -159,7 +159,7 @@
+ # Specify the log file name. Also the empty string can be used to force
+ # Redis to log on the standard output. Note that if you use standard
+ # output for logging but daemonize, logs will be sent to /dev/null
+-logfile ""
++logfile /var/log/redis/redis.log
+
+ # To enable logging to the system logger, just set 'syslog-enabled' to yes,
+ # and optionally update the other syslog parameters to suit your needs.
+@@ -243,7 +243,7 @@
+ # The Append Only File will also be created inside this directory.
+ #
+ # Note that you must specify a directory here, not a file name.
+-dir ./
++dir /var/lib/redis/
+
+ ################################# REPLICATION #################################
+
+@@ -505,6 +505,7 @@
+ # output buffers (but this is not needed if the policy is 'noeviction').
+ #
+ # maxmemory <bytes>
++maxmemory 67108864
+
+ # MAXMEMORY POLICY: how Redis will select what to remove when maxmemory
+ # is reached. You can select among five behaviors: