Checks for redis.conf in /usr/local (by justthisguy)
This commit is contained in:
parent
e7a065a521
commit
3976489984
1 changed files with 4 additions and 0 deletions
|
|
@ -55,6 +55,10 @@ function redis_config
|
|||
redis_conf="/etc/redis.conf"
|
||||
elif [ -r "/etc/redis/redis.conf" ]; then
|
||||
redis_conf="/etc/redis/redis.conf"
|
||||
elif [ -r "/usr/local/etc/redis.conf" ]; then
|
||||
redis_conf="/usr/local/etc/redis.conf"
|
||||
elif [ -r "/usr/local/etc/redis/redis.conf" ]; then
|
||||
redis_conf="/usr/local/etc/redis/redis.conf"
|
||||
else
|
||||
echo <<- EOM
|
||||
Don't know how to configure redis for this platform. Copy
|
||||
|
|
|
|||
Loading…
Reference in a new issue