diff options
author | Théophile Helleboid <theophile.helleboid@captaintrain.com> | 2019-05-02 17:24:20 +0200 |
---|---|---|
committer | Théophile Helleboid <theophile.helleboid@captaintrain.com> | 2019-05-03 14:10:05 +0200 |
commit | 99504fed92577795e1ab0bf2ec0cd30a2435799f (patch) | |
tree | 4416f99a827f63e37ab98d94c66126d33ab323b0 /README.md | |
parent | c6719a82860c7855fb749f98734fe17c38c2fe78 (diff) | |
download | ansible-postgresql-role-99504fed92577795e1ab0bf2ec0cd30a2435799f.tar.gz ansible-postgresql-role-99504fed92577795e1ab0bf2ec0cd30a2435799f.tar.zst ansible-postgresql-role-99504fed92577795e1ab0bf2ec0cd30a2435799f.zip |
Allow to set options for barman connectivity
- Allow to pass arbitrary options
- Build the URL in a dedicated step
- Allow to specify path prefix for barman files
- Add documentation in [README.md](README.md)
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -78,6 +78,13 @@ postgres_replication_hosts: | |||
78 | 78 | ||
79 | # Ansible related Configuration | 79 | # Ansible related Configuration |
80 | postgres_become_method: su # Optional | 80 | postgres_become_method: su # Optional |
81 | |||
82 | # Barman connectivity | ||
83 | postgres_barman_server: barman.example.com # Required if at least one server has archive_enabled enabled | ||
84 | postgres_barman_rsync_enabled: False # Optional | ||
85 | postgres_barman_rsync_options: '' # Optional | ||
86 | postgres_barman_remote_user: barman # Optional | ||
87 | postgres_barman_path_prefix: '~' # Optional, required if using rsync | ||
81 | ``` | 88 | ``` |
82 | 89 | ||
83 | #### Testing | 90 | #### Testing |