mirror of
https://github.com/Cian-H/iform-invenio.git
synced 2026-08-16 16:32:50 +01:00
11 lines
321 B
Bash
11 lines
321 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
if [ "$ENABLE_WALG" = "true" ]; then
|
|
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"
|
|
else
|
|
echo "archive_mode = off" >> "$PGDATA/postgresql.conf"
|
|
fi
|