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 /molecule/default/converge.yml | |
| 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 'molecule/default/converge.yml')
| -rw-r--r-- | molecule/default/converge.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/molecule/default/converge.yml b/molecule/default/converge.yml index fec5f95..be65609 100644 --- a/molecule/default/converge.yml +++ b/molecule/default/converge.yml @@ -146,6 +146,7 @@ borg_ssh_key_per_repo: true borg_ssh_key_type: ed25519 borg_mode_append_only: true + borg_storage_quota: 10G borg_compression: zstd borg_included_dirs: - /etc @@ -159,6 +160,7 @@ borg_ssh_key_per_repo: true borg_ssh_key_type: ed25519 borg_mode_append_only: false + borg_storage_quota: 50G borg_compression: lz4 borg_included_dirs: - /home |