borgmatic is run under user root so postgres superuser doesn't match peer
This commit is contained in:
parent
6896dcf819
commit
b0be26e459
2 changed files with 9 additions and 1 deletions
|
@ -69,7 +69,7 @@ hooks:
|
||||||
postgresql_databases:
|
postgresql_databases:
|
||||||
{% for hook in borgmatic_hooks.postgresql_databases %}
|
{% for hook in borgmatic_hooks.postgresql_databases %}
|
||||||
- name: {{ hook.name | default('all') }}
|
- name: {{ hook.name | default('all') }}
|
||||||
username: {{ hook.username | default('postgres') }}
|
username: {{ hook.username | default('root') }}
|
||||||
format: {{ hook.format | default('custom') }}
|
format: {{ hook.format | default('custom') }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
@ -9,6 +9,14 @@
|
||||||
- python3-psycopg2
|
- python3-psycopg2
|
||||||
- acl
|
- acl
|
||||||
|
|
||||||
|
- name: Create root postgresql superuser, needed for backups
|
||||||
|
become: true
|
||||||
|
become_user: postgres
|
||||||
|
community.postgresql.postgresql_user:
|
||||||
|
name: root
|
||||||
|
state: present
|
||||||
|
role_attr_flags: SUPERUSER
|
||||||
|
|
||||||
- name: Create postgresql users
|
- name: Create postgresql users
|
||||||
become: true
|
become: true
|
||||||
become_user: postgres
|
become_user: postgres
|
||||||
|
|
Loading…
Add table
Reference in a new issue