From be24b5afd8564c86ce012b042ce9caff0c7b060b Mon Sep 17 00:00:00 2001 From: Edi Septriyanto Date: Fri, 9 Jul 2021 01:24:52 +0700 Subject: [PATCH] Fix typo REDIS_REQUIRE_PASS --- scripts/install_redis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install_redis.sh b/scripts/install_redis.sh index 089c71e..b5e877a 100755 --- a/scripts/install_redis.sh +++ b/scripts/install_redis.sh @@ -171,7 +171,7 @@ maxmemory-policy allkeys-lru EOL # Is Redis password protected enable? - if "${REDIS_REQUIREPASS}"; then + if "${REDIS_REQUIRE_PASS}"; then echo "Redis Requirepass is enabled..." REDIS_PASSWORD=${REDIS_PASSWORD:-$(openssl rand -base64 64 | tr -dc 'a-zA-Z0-9' | fold -w 16 | head -n 1)}