From 54a69a9922eddd475a1113a09c1ce4788fe3ca12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Slavi=C5=A1a=20Are=C5=BEina?= <58952836+tremor021@users.noreply.github.com> Date: Fri, 15 Aug 2025 14:46:14 +0200 Subject: [PATCH] Update install/ghostfolio-install.sh --- install/ghostfolio-install.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/install/ghostfolio-install.sh b/install/ghostfolio-install.sh index b3b0efbd..6e5cf232 100644 --- a/install/ghostfolio-install.sh +++ b/install/ghostfolio-install.sh @@ -39,7 +39,6 @@ DB_PASS=$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | head -c13) REDIS_PASS=$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | head -c13) ACCESS_TOKEN_SALT=$(openssl rand -base64 32) JWT_SECRET_KEY=$(openssl rand -base64 32) - $STD sudo -u postgres psql -c "CREATE DATABASE $DB_NAME;" $STD sudo -u postgres psql -c "CREATE USER $DB_USER WITH ENCRYPTED PASSWORD '$DB_PASS';" $STD sudo -u postgres psql -c "GRANT ALL PRIVILEGES ON DATABASE $DB_NAME TO $DB_USER;"