mirror of
https://github.com/Cian-H/iform-invenio.git
synced 2026-08-16 16:32:50 +01:00
8 lines
256 B
Bash
8 lines
256 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Configure postgres to archive WAL logs via wal-g
|
|
echo "archive_mode = on" >> "$PGDATA/postgresql.conf"
|
|
echo "archive_command = 'wal-g wal-push %p'" >> "$PGDATA/postgresql.conf"
|
|
echo "archive_timeout = 60" >> "$PGDATA/postgresql.conf"
|