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

26 lines
695 B
Plaintext
Raw Normal View History

[global:command]
2013-12-02 22:34:37 +03:00
#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}'
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'
psql=/Library/PostgreSQL/9.3/bin/psql -X %option%
2013-12-14 21:14:59 +03:00
[global:backup]
2014-02-05 02:48:39 +03:00
user=backrest
host=localhost
2014-02-05 21:10:36 +03:00
path=/Users/backrest/test
2014-02-01 19:04:33 +03:00
[global:retention]
2014-01-04 03:28:49 +03:00
full_retention=2
differential_retention=2
archive_retention_type=full
archive_retention=2
2013-12-05 06:30:26 +03:00
[db]
psql_options=--cluster=9.3/main
2014-01-23 05:40:56 +03:00
path=/Users/dsteele/test/db/common
[db:command:option]
psql=--port=6001