From 138ef039065ea9aaa88b2daff93e7d9fd81c5f58 Mon Sep 17 00:00:00 2001 From: Jesse Antoszyk <22500761+jcantosz@users.noreply.github.com> Date: Wed, 23 Oct 2024 13:19:28 +0000 Subject: [PATCH] typos --- install/ghostfolio-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/ghostfolio-install.sh b/install/ghostfolio-install.sh index 00262955..e834d734 100644 --- a/install/ghostfolio-install.sh +++ b/install/ghostfolio-install.sh @@ -65,14 +65,14 @@ echo -e "Ghostfolio Database Password: \e[32m$POSTGRES_PASSWORD\e[0m" >>~/ghostf echo -e "Ghostfolio Database Name: \e[32m$POSTGRES_DB\e[0m" >>~/ghostfolio.creds msg_ok "Installed Postgresql" -msg_info "Installed Redis" +msg_info "Installing Redis" REDIS_HOST=localhost REDIS_PORT=6379 REDIS_PASSWORD="$(head /dev/urandom | tr -dc A-Za-z0-9 | head -c 32)" $STD redis-cli CONFIG SET requirepass "$REDIS_PASSWORD" $STD redis-cli -a "$REDIS_PASSWORD" CONFIG REWRITE -$STD systemctl restart Redis +$STD systemctl restart redis echo "" >>~/ghostfolio.creds echo "Ghostfolio Redis Credentials" >>~/ghostfolio.creds echo "" >>~/ghostfolio.creds