mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2024-12-14 10:13:05 +02:00
17 lines
588 B
Plaintext
17 lines
588 B
Plaintext
[command]
|
|
#compress=pigz --rsyncable --best --stdout %file% # Ubuntu Linux
|
|
compress=/usr/bin/gzip --stdout %file%
|
|
decompress=/usr/bin/gzip -dc %file%
|
|
#checksum=sha1sum %file% | awk '{print \$1}' # Ubuntu Linux
|
|
checksum=/usr/bin/shasum %file% | awk '{print $1}'
|
|
copy=/bin/cp %source% %destination%
|
|
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 --port=6001
|
|
diff=/bin/bash -c '/usr/bin/diff -q %file1% %file2%'
|
|
|
|
[common]
|
|
backup_path=/Users/dsteele/test/backup
|
|
|
|
[cluster:db]
|
|
data_path=/Users/dsteele/test/db/common
|