12 lines
748 B
Bash
12 lines
748 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# wal-e specific
|
||
|
echo "wal_level = archive" >> /var/lib/postgresql/data/postgresql.conf
|
||
|
echo "archive_mode = on" >> /var/lib/postgresql/data/postgresql.conf
|
||
|
echo "archive_command = 'envdir /etc/wal-e.d/env /usr/local/bin/wal-e wal-push %p'" >> /var/lib/postgresql/data/postgresql.conf
|
||
|
echo "archive_timeout = 60" >> /var/lib/postgresql/data/postgresql.conf
|
||
|
|
||
|
# no cron in the image, use systemd timer on host instead
|
||
|
#su - postgres -c "crontab -l | { cat; echo \"0 3 * * * /usr/bin/envdir /etc/wal-e.d/env /usr/local/bin/wal-e backup-push /var/lib/postgresql/data\"; } | crontab -"
|
||
|
#su - postgres -c "crontab -l | { cat; echo \"0 4 * * * /usr/bin/envdir /etc/wal-e.d/env /usr/local/bin/wal-e delete --confirm retain 7\"; } | crontab -"
|