fix
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Andrew Wang 2021-08-25 01:43:13 -04:00
parent 2b41423a88
commit 90818e5b1f
1 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ GRANT ALL ON SCHEMA public TO postgres;
``` ```
create a new `pg_hba.conf` to force password authentication and reject non local create a new `pg_hba.conf` to force password authentication and reject non local
``` ```
cd /etc/postgres/<version>/<branch>/ cd /etc/postgresql/<version>/<branch>/
mv pg_hba.conf pg_hba.conf.old mv pg_hba.conf pg_hba.conf.old
``` ```
``` ```
@ -62,7 +62,7 @@ local sameuser all md5
host all all 0.0.0.0/0 reject host all all 0.0.0.0/0 reject
``` ```
``` ```
systemctl restart postgres systemctl restart postgresql
``` ```
#### Dependencies #### Dependencies