summaryrefslogtreecommitdiff
path: root/databases/redis/patches/patch-ac
blob: d84a9d36c509ab1651dc061b5bef8668967be5c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
$NetBSD: patch-ac,v 1.5 2016/05/06 14:00:45 fhajny Exp $

Sane defaults for the config file.
--- redis.conf.orig	2016-05-06 07:11:36.000000000 +0000
+++ redis.conf
@@ -124,7 +124,7 @@ tcp-keepalive 0
 
 # By default Redis does not run as a daemon. Use 'yes' if you need it.
 # Note that Redis will write a pid file in /var/run/redis.pid when daemonized.
-daemonize no
+daemonize yes
 
 # If you run Redis from upstart or systemd, Redis can interact with your
 # supervision tree. Options:
@@ -146,7 +146,7 @@ supervised no
 #
 # 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 @REDIS_PIDDIR@/redis.pid
 
 # Specify the server verbosity level.
 # This can be one of:
@@ -159,7 +159,7 @@ loglevel notice
 # 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 @REDIS_LOGDIR@/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 @@ dbfilename dump.rdb
 # 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 @REDIS_DATADIR@ 
 
 ################################# REPLICATION #################################