This commit is contained in:
Andre
2019-12-09 12:20:50 +01:00
committed by GitHub
parent 840e35d922
commit 5319305d0b

View File

@@ -217,6 +217,18 @@ then
echo ' '
fi
# Checking ENV for REDIS
if [ "$redis" != "false" ]
then
echo "Connection to Redis is configured by ENV."
echo "Installing prerequisites..."
apt-get update 2>&1> /dev/null && apt-get install -y jq 2>&1> /dev/null && rm -rf /var/lib/apt/lists/*
echo "Setting configuration for Redis in ioBroker..."
# missing
echo "Done."
echo ' '
fi
sleep 5