Skip to content

Commit

Permalink
Merge pull request #3 from paulRbr/warning-2.8
Browse files Browse the repository at this point in the history
config(backup_option): warning introduced in barman 2.8
  • Loading branch information
chtitux authored Sep 20, 2019
2 parents fb260b6 + 1b52367 commit 7043522
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ barman_config: # Optional
bandwith_limit: 0
parallel_jobs: 2
network_compression: true|false
backup_options: exclusive_backup|concurrent_backup
```
#### Testing
Expand Down
4 changes: 4 additions & 0 deletions templates/barman.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,11 @@ network_compression = {{ barman_config['network_compression'] }}

; Identify the standard behavior for backup operations: possible values are
; exclusive_backup (default), concurrent_backup
{% if barman_config['backup_options'] is defined -%}
backup_options = {{ barman_config['backup_options'] }}
{% else %}
;backup_options = exclusive_backup
{% endif %}

; Number of retries of data copy during base backup after an error - default 0
;basebackup_retry_times = 0
Expand Down

0 comments on commit 7043522

Please sign in to comment.