fixed created postgresql username

thanks to @sshaikh for reporting
This commit is contained in:
Patrick Cernko 2025-07-14 05:36:57 +02:00
parent 2f34f06591
commit 0394b31630

View file

@ -23,8 +23,8 @@ account to do so. This account needs to have superuser capabilities as
the database population includes enabling the postgis extention:
```sh
sudo -u postgres psql <<EOF
CREATE USER test PASSWORD 'UseAStrongPasswordAndKeepItSecret';
ALTER USER test WITH SUPERUSER;
CREATE USER dawarich PASSWORD 'UseAStrongPasswordAndKeepItSecret';
ALTER USER dawarich WITH SUPERUSER;
EOF
```