Remove unix socket from redis configuration

Since redis-3.2.4-1.el7, /var/run/redis is not longer
created, so redis fails to start with default configuration
in puppet-redis because it can't create socket file.

This patch removes unix socket from redis configuration
as it's the default in redis.conf file and it's not
required for openstack services (they connect via TCP
socket).

Change-Id: Ifd030b019becb1db6c98a09fe7fad0493e685516
Closes-Bug: 1633498
(cherry picked from commit 65c0c914a3)
This commit is contained in:
Alfredo Moralejo 2016-10-15 10:13:43 -04:00
parent f0567c6265
commit b0bca42c26
1 changed files with 1 additions and 0 deletions

View File

@ -10,5 +10,6 @@ class packstack::redis ()
port => $redis_port,
appendonly => true,
daemonize => false,
unixsocket => false,
}
}