Compare commits

..

2 commits

Author SHA1 Message Date
Patrick C.
3515ffb743
Merge 0394b31630 into b25647879f 2025-07-14 03:37:37 +00:00
Patrick Cernko
0394b31630 fixed created postgresql username
thanks to @sshaikh for reporting
2025-07-14 05:36:57 +02:00

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
```