diff options
| author | Colin Wilk <colin@wilk.cx> | 2026-06-27 21:20:35 +0000 |
|---|---|---|
| committer | Colin Wilk <colin@wilk.cx> | 2026-06-27 21:28:48 +0000 |
| commit | 8b0175c70cbf3ed63c9a0e617c3f1e5332650ff6 (patch) | |
| tree | 4bf466fc21c201833d4b1b9612d8b2abeb82649c /meta | |
| parent | 8d872069976c5445c4396804ef3a0196f10eb14b (diff) | |
| download | ansible-role-borgbackup-8b0175c70cbf3ed63c9a0e617c3f1e5332650ff6.tar.gz ansible-role-borgbackup-8b0175c70cbf3ed63c9a0e617c3f1e5332650ff6.zip | |
feat: add storage quota support
Add borg_storage_quota variable to limit repository storage on the
borg server via --storage-quota option in authorized_keys.
When not using borg_ssh_key_per_repo, all repos for a host must share
the same quota setting (similar to --append-only). Per-repo SSH keys
enable independent quotas per repository.
Diffstat (limited to 'meta')
| -rw-r--r-- | meta/argument_specs.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/argument_specs.yml b/meta/argument_specs.yml index 2331794..0101ed1 100644 --- a/meta/argument_specs.yml +++ b/meta/argument_specs.yml @@ -42,6 +42,11 @@ argument_specs: required: false default: false + borg_storage_quota: + type: str + required: false + default: "" + borg_compression: type: str required: false |