summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2017-12-29 08:59:47 +0100
committerYorhel <git@yorhel.nl>2017-12-29 09:00:15 +0100
commitdc15b3f21c4004c2ede86de853eb28f218b7090e (patch)
treed95b471ba0af5c41090cd78f99033e5eda8b0344 /README
parent56c6772aa792122931f415c3049491c685f678a4 (diff)
Experimenting with PostgreSQL 10: "UNENCRYPTED" keyword has been removed
Diffstat (limited to 'README')
-rw-r--r--README6
1 files changed, 3 insertions, 3 deletions
diff --git a/README b/README
index af07c0a4..f4ea01f6 100644
--- a/README
+++ b/README
@@ -83,9 +83,9 @@ Setup
psql -U postgres -f util/sql/superuser_init.sql
# Set a password for each database role:
- echo "ALTER ROLE vndb LOGIN UNENCRYPTED PASSWORD 'pwd1'" | psql -U postgres
- echo "ALTER ROLE vndb_site LOGIN UNENCRYPTED PASSWORD 'pwd2'" | psql -U postgres
- echo "ALTER ROLE vndb_multi LOGIN UNENCRYPTED PASSWORD 'pwd3'" | psql -U postgres
+ echo "ALTER ROLE vndb LOGIN PASSWORD 'pwd1'" | psql -U postgres
+ echo "ALTER ROLE vndb_site LOGIN PASSWORD 'pwd2'" | psql -U postgres
+ echo "ALTER ROLE vndb_multi LOGIN PASSWORD 'pwd3'" | psql -U postgres
# Now import the rest
psql -U vndb -f util/sql/all.sql