noresistence
  • Joined on 2021-11-28
noresistence commented on issue borgmatic-collective/borgmatic#456 2022-05-06 14:46:08 +00:00
Provide separate hook to check repository availability

nevermind, with the repository queue and retries that have been introduced (180018fd81) borgmatic now…

noresistence commented on issue borgmatic-collective/borgmatic#456 2022-05-06 13:47:13 +00:00
Provide separate hook to check repository availability

The changes in 1.6.0 did simplify the usage of common config, nice work there :)

Please let me know if this works for your use cases!

Using before_backup to check for availability of a…

noresistence commented on issue borgmatic-collective/borgmatic#528 2022-05-06 11:30:08 +00:00
Invalid override value when using command-line override to specify a remote repository location

Workaround: Enclose both the repository url and the whole array in quotes:

borgmatic prune --override location.repositories="['ssh://borg@server:1234/~
/backup_repository']"…
noresistence commented on issue borgmatic-collective/borgmatic#528 2022-05-06 11:24:34 +00:00
Invalid override value when using command-line override to specify a remote repository location

i guess ruamel.yaml expects the remote server repository string to be enclosed in quotes. This is not obvious from the examples in the documentation.

python3
>>> import ruamel.yaml
>>>…
noresistence opened issue borgmatic-collective/borgmatic#528 2022-05-06 11:01:54 +00:00
Invalid override value when using command-line override to specify a remote repository location
noresistence created repository noresistence/borgmatic 2021-11-28 11:29:38 +00:00
noresistence commented on issue borgmatic-collective/borgmatic#456 2021-11-28 11:12:25 +00:00
Provide separate hook to check repository availability

maybe even allow a certain amount of retries and a wait period in case of connection failures

noresistence commented on issue borgmatic-collective/borgmatic#456 2021-11-28 10:49:49 +00:00
Provide separate hook to check repository availability

I want to support this Issue. My use case is similar:

  • There is a pre-backup script that should be executed only once, not once for each repository
  • The repositories may or may not be available…