mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-10 22:45:02 +00:00
Implement password verification in db-init.sh.
This commit is contained in:
parent
5103878741
commit
1d4dc19d6f
1 changed files with 33 additions and 2 deletions
35
server/db-init.sh
vendored
35
server/db-init.sh
vendored
|
@ -4,9 +4,40 @@ username=lemmy
|
||||||
dbname=lemmy
|
dbname=lemmy
|
||||||
port=5432
|
port=5432
|
||||||
|
|
||||||
read -p "Enter database password: " -s password
|
password=""
|
||||||
echo
|
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 USER $username WITH PASSWORD '$password' SUPERUSER;" -U postgres
|
||||||
psql -c 'CREATE DATABASE $dbname WITH OWNER $username;' -U postgres
|
psql -c 'CREATE DATABASE $dbname WITH OWNER $username;' -U postgres
|
||||||
export LEMMY_DATABASE_URL=postgres://$username:$password@localhost:$port/$dbname
|
export LEMMY_DATABASE_URL=postgres://$username:$password@localhost:$port/$dbname
|
||||||
|
|
||||||
|
echo $LEMMY_DATABASE_URL
|
||||||
|
|
Loading…
Reference in a new issue