1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-01-18 04:58:51 +02:00
pgbackrest/pg_backrest.conf

39 lines
887 B
Plaintext
Raw Normal View History

[global:command]
2013-12-02 14:34:37 -05:00
#compress=pigz --rsyncable --best --stdout %file% # Ubuntu Linux
2013-12-15 18:18:54 -05:00
compress=/usr/bin/gzip --stdout %file%
decompress=/usr/bin/gzip -dc %file%
2014-02-13 17:11:53 -05:00
#checksum=sha1sum %file% | awk '{print $1}' # Ubuntu Linux
2013-12-15 18:18:54 -05:00
checksum=/usr/bin/shasum %file% | awk '{print $1}'
2013-12-14 13:14:59 -05: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 13:14:59 -05:00
2014-02-13 17:11:53 -05:00
[global:log]
2014-02-13 17:47:53 -05:00
level-file=debug
level-console=info
2014-02-13 17:11:53 -05:00
[global:backup]
2014-02-04 18:48:39 -05:00
user=backrest
host=localhost
2014-02-05 13:10:36 -05:00
path=/Users/backrest/test
2014-02-13 14:54:28 -05:00
archive-required=y
2014-02-13 12:02:45 -05:00
thread-max=2
2014-02-24 09:33:47 -05:00
thread-timeout=900
start_fast=y
2014-02-12 07:39:42 -05:00
[global:archive]
path=/Users/dsteele/test
2014-02-13 12:02:45 -05:00
compress-async=y
archive-max-mb=500
2014-02-01 11:04:33 -05:00
[global:retention]
2014-01-03 19:28:49 -05:00
full_retention=2
differential_retention=2
archive_retention_type=full
archive_retention=2
2013-12-04 22:30:26 -05:00
[db]
psql_options=--cluster=9.3/main
2014-01-22 21:40:56 -05:00
path=/Users/dsteele/test/db/common
[db:command:option]
psql=--port=6001