How to restore roles without changing postgres password - Mailing list pgsql-general

From Andrus
Subject How to restore roles without changing postgres password
Date
Msg-id 38D406CB287140A49F635258B634E072@dell2
Whole thread Raw
Responses Re: How to restore roles without changing postgres password  (Justin <zzzzz.graf@gmail.com>)
Re: How to restore roles without changing postgres password  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
Hi!

How to create backup script which restores all roles and role memberships 
from other server without changing postgres user password.

I tried shell script

PGHOST=example.com
PGUSER=postgres
PGPASSWORD=mypass
export PGHOST  PGPASSWORD  PGUSER
pg_dumpall --roles-only --file=globals.sql
psql -f globals.sql postgres

but this changes user postgres  password also.
How to restore roles so that postgres user password is not changed on 
restore.

Script runs on Debian 10 with Postgres 12
Server from where it reads users runs on Debian Squeeze with Postgres 9.1

Andrus 




pgsql-general by date:

Previous
From: Julien Rouhaud
Date:
Subject: Re: Query returns no results until REINDEX
Next
From: Justin
Date:
Subject: Re: How to restore roles without changing postgres password