diff options
author | Sergey A. Osokin <osa@FreeBSD.org> | 2019-11-21 19:27:39 +0000 |
---|---|---|
committer | Sergey A. Osokin <osa@FreeBSD.org> | 2019-11-21 19:27:39 +0000 |
commit | 89e0b04783bb6f6a0dde7811bb8af7da69eeac17 (patch) | |
tree | f097f4a4a9b81f0cf39752ffc85ef362a0176797 /databases/redis4/files/patch-redis.conf | |
parent | cad/openvsp: update to 3.19.1 (diff) |
Repocopy the databases/redis to the databases/redis4 to update
the databases/redis port to the latest stable version, 5.0.6.
PR: 241526
Reviewed by: portmgr (adamw)
Approved by: portmgr (adamw)
Differential Revision: https://reviews.freebsd.org/D22336
Notes
Notes:
svn path=/head/; revision=518107
Diffstat (limited to 'databases/redis4/files/patch-redis.conf')
-rw-r--r-- | databases/redis4/files/patch-redis.conf | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/databases/redis4/files/patch-redis.conf b/databases/redis4/files/patch-redis.conf new file mode 100644 index 000000000000..5e8d12a9e10b --- /dev/null +++ b/databases/redis4/files/patch-redis.conf @@ -0,0 +1,38 @@ +--- redis.conf.orig 2016-06-17 09:15:21.000000000 -0400 ++++ redis.conf 2016-06-18 11:58:19.871082000 -0400 +@@ -125,7 +125,7 @@ + + # 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: +@@ -147,7 +147,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_6379.pid ++pidfile %%REDIS_RUNDIR%%/redis.pid + + # Specify the server verbosity level. + # This can be one of: +@@ -160,7 +160,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 %%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. +@@ -244,7 +244,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 %%REDIS_DBDIR%%/ + + ################################# REPLICATION ################################# + |