1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2024-12-14 10:13:05 +02:00
pgbackrest/pg_backrest.conf

20 lines
652 B
Plaintext
Raw Normal View History

2013-12-02 22:34:37 +03:00
[command]
#compress=pigz --rsyncable --best --stdout %file% # Ubuntu Linux
2013-12-16 02:18:54 +03:00
compress=/usr/bin/gzip --stdout %file%
decompress=/usr/bin/gzip -dc %file%
2013-12-02 22:34:37 +03:00
#checksum=sha1sum %file% | awk '{print \$1}' # Ubuntu Linux
2013-12-16 02:18:54 +03:00
checksum=/usr/bin/shasum %file% | awk '{print $1}'
copy=/bin/cp %source% %destination%
2013-12-14 21:14:59 +03:00
manifest=/opt/local/bin/gfind %path% -printf '%P\t%y\t%u\t%g\t%m\t%T@\t%i\t%s\t%l\n'
2013-12-16 04:04:07 +03:00
psql=/Library/PostgreSQL/9.3/bin/psql --port=6001
2013-12-14 21:14:59 +03:00
2013-12-05 06:30:26 +03:00
[common]
2013-12-07 04:24:14 +03:00
backup_path=/Users/dsteele/test/backup
2014-01-04 03:28:49 +03:00
full_retention=2
differential_retention=2
2014-01-16 04:41:29 +03:00
wal_retention_type=full,diff,incr
wal_retention=2 # 0 means since the last type
2013-12-05 06:30:26 +03:00
2013-12-05 05:37:45 +03:00
[cluster:db]
2014-01-23 05:40:56 +03:00
path=/Users/dsteele/test/db/common