From 0c37a835228f9548348857aa6cf6c2710d1f3141 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Malfait?= Date: Fri, 15 Nov 2024 09:24:39 +0100 Subject: [PATCH] Fix --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 981770f72200..1f80b57506c5 100755 --- a/install.sh +++ b/install.sh @@ -93,7 +93,7 @@ fi echo "# === Randomly generated secrets ===" >>.env echo "APP_SECRET=$(openssl rand -base64 32)" >>.env echo "" >>.env -echo "PGPASSWORD_SUPERUSER=$(openssl rand -base64 32 | tr -dc 'a-zA-Z0-9')" >>.env +echo "PGPASSWORD_SUPERUSER=$(openssl rand -hex 16)" >>.env echo -e "\t• .env configuration completed"