@@ -42,15 +42,15 @@ with_templates = false
4242format = custom
4343
4444# When the format is directory, number of parallel jobs to dumps (-j
45- # option of pg_dump)
45+ # option of pg_dump).
4646parallel_backup_jobs = 1
4747
4848# When using a compressed binary format, e.g. custom or directory, adjust the
4949# compression level between 0 and 9. Use -1 to keep the default level of pg_dump.
5050compress_level = -1
5151
52- # Compute checksum a checksum file for each dump that can be checked
53- # by the corresponding shaXsum -c command. Possible values are none to
52+ # Compute a checksum for each file in the dumps. It can be checked
53+ # by the corresponding shaXsum -c command. Possible values are: none to
5454# disable checksums, sha1, sha224, sha256, sha384, and sha512.
5555checksum_algorithm = none
5656
@@ -61,23 +61,23 @@ encrypt = false
6161# environment variable can be used alternatively.
6262cipher_pass =
6363
64- # Keep orignal files after encrypting them.
64+ # Keep original files after encrypting them.
6565encrypt_keep_source = false
6666
6767# Purge dumps older than this number of days. If the interval has to
6868# be shorter than one day, use a duration with units, h for hours, m
6969# for minutes, s for seconds, us for microseconds or ns for
70- # nanoseconds, ex . 1h30m24s.
70+ # nanoseconds, e.g . 1h30m24s.
7171purge_older_than = 30
7272
7373# When purging older dumps, always keep this minimum number of
74- # dumps. The default is 0, even if purge_older_than is 0 the dumps of
75- # the current run are kept, if one wants to remove all dumps and not
74+ # dumps. The default is 0. Even if purge_older_than is 0 the dumps of
75+ # the current run are kept. To remove all dumps and not
7676# keep anything, for example to just test for data corruption, then
7777# purge_older_than shall be a negative duration.
7878purge_min_keep = 0
7979
80- # Number of pg_dump commands to run concurrently
80+ # Number of pg_dump commands to run concurrently.
8181jobs = 1
8282
8383# inject these options to pg_dump
@@ -86,11 +86,11 @@ pg_dump_options =
8686# When dumping from a hot standby server, wait for exclusive locks to
8787# be released within this number of seconds. Abort if exclusive locks
8888# are still held. If a exclusive lock is granted and replication is
89- # paused, the lock is held until to replication is resumed, causing
89+ # paused, the lock is held until the replication is resumed, causing
9090# pg_dump to wait forever.
9191pause_timeout = 3600
9292
93- # Commands to execute before dumping and after. The post-backup
93+ # Commands to execute before and after dumping . The post-backup
9494# command is always executed even in case of failure.
9595pre_backup_hook =
9696post_backup_hook =
@@ -100,7 +100,7 @@ post_backup_hook =
100100upload = none
101101
102102# Purge remote files. When uploading to a remote location, purge the remote
103- # files with the same rules as the local directory
103+ # files with the same rules as the local directory.
104104# purge_remote = false
105105
106106# AWS S3 Access information. Region and Bucket are mandatory. If no credential
@@ -149,7 +149,7 @@ upload = none
149149# azure_key =
150150
151151# # Per database options. Use a ini section named the same as the
152- # # database. These options take precedence over the global values
152+ # # database. These options take precedence over the global values.
153153# [dbname]
154154
155155# format =
@@ -161,7 +161,7 @@ upload = none
161161
162162# # List of schemas and tables to dump or exlude from the dump.
163163# # Inclusion and exclusion rules of pg_dump apply, as well as
164- # # pattern rules. Separate schema/table names with a semicolon
164+ # # pattern rules. Separate schema/table names with a semicolon.
165165# schemas =
166166# exclude_schemas =
167167
@@ -172,7 +172,7 @@ upload = none
172172# keep the default behaviour, see pg_dump -b.
173173# with_blobs = true
174174
175- # # inject these options to pg_dump. Use an empty value to cancel the
176- # # global value of pg_dump_options
175+ # # inject these options to pg_dump. Use an empty value to override the
176+ # # global value of pg_dump_options.
177177# pg_dump_options =
178178
0 commit comments