diff options
| author | Colin Wilk <colin@wilk.cx> | 2026-06-28 21:58:51 +0200 |
|---|---|---|
| committer | Colin Wilk <colin@wilk.cx> | 2026-06-28 21:58:51 +0200 |
| commit | 9df891b2bc48a7565103bab3f5bdc64542aec5f8 (patch) | |
| tree | b4ebbf1fe2fda245bc5bf99c893cba952b79affa /meta/argument_specs.yml | |
| parent | 8b0175c70cbf3ed63c9a0e617c3f1e5332650ff6 (diff) | |
| download | ansible-role-borgbackup-9df891b2bc48a7565103bab3f5bdc64542aec5f8.tar.gz ansible-role-borgbackup-9df891b2bc48a7565103bab3f5bdc64542aec5f8.zip | |
docs: sync argument_specs.yml
Diffstat (limited to 'meta/argument_specs.yml')
| -rw-r--r-- | meta/argument_specs.yml | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/meta/argument_specs.yml b/meta/argument_specs.yml index 0101ed1..ef7dd4d 100644 --- a/meta/argument_specs.yml +++ b/meta/argument_specs.yml @@ -17,6 +17,25 @@ argument_specs: ################################################################################ # Optional ################################################################################ + borg_client_user: + type: str + required: false + default: root + + borg_client_user_home: + type: str + required: false + + borg_ssh_key_type: + type: str + required: false + default: rsa + + borg_ssh_key_per_repo: + type: bool + required: false + default: false + borg_server_host_url: type: str required: false @@ -69,6 +88,7 @@ argument_specs: borg_decryption_keys_yaml_path: type: str required: false + default: "{{ inventory_dir }}/decryption_keys.yml" borg_backup_script_location: type: str @@ -88,7 +108,13 @@ argument_specs: borg_backup_argument: type: str required: false - default: "{ borg_server_host_url }" + default: "{{ borg_server_host_url }}" + + borg_backup_service_successful_exit_status: + type: list + elements: str + required: false + default: [] borg_systemd_oncalendar: type: str |