summaryrefslogtreecommitdiffstats
path: root/server/db-init.sh
diff options
context:
space:
mode:
authorRichie Zhang <12566991+StaticallyTypedRice@users.noreply.github.com>2020-02-06 13:07:34 -0800
committerGitHub <noreply@github.com>2020-02-06 13:07:34 -0800
commit33563c3e9fa123efe0824f611413a23a138a1f1e (patch)
treeba437c69066e94ac0cf7ee7d820cf368087c1162 /server/db-init.sh
parent9b6f8ec20749b15b90aa375311ad1c5d74f1bd2d (diff)
Implement password verification in db-init.sh.
Diffstat (limited to 'server/db-init.sh')
-rw-r--r--server/db-init.sh35
1 files changed, 33 insertions, 2 deletions
diff --git a/server/db-init.sh b/server/db-init.sh
index 77b9a6d7..c9150e9d 100644
--- a/server/db-init.sh
+++ b/server/db-init.sh
@@ -4,9 +4,40 @@ username=lemmy
dbname=lemmy
port=5432
-read -p "Enter database password: " -s password
-echo
+password=""
+password_confirm=""
+password_valid=0
+
+while [ "$password_valid" == 0 ]
+do
+ read -p "Enter database password: " -s password
+ echo
+
+ read -p "Verify database password: " -s password_confirm
+ echo
+ echo
+
+ # Start the loop from the top if either check fails
+ if [ -z "$password" ]
+ then
+ echo "Error: Password cannot be empty." 1>&2
+ echo
+ continue
+ fi
+ if [ "$password" != "$password_confirm" ]
+ then
+ echo "Error: Passwords don't match." 1>&2
+ echo
+ continue
+ fi
+
+ # Set the password_valid variable to break out of the loop
+ password_valid=1
+done
+
psql -c "CREATE USER $username WITH PASSWORD '$password' SUPERUSER;" -U postgres
psql -c 'CREATE DATABASE $dbname WITH OWNER $username;' -U postgres
export LEMMY_DATABASE_URL=postgres://$username:$password@localhost:$port/$dbname
+
+echo $LEMMY_DATABASE_URL