aboutsummaryrefslogtreecommitdiffstats
path: root/tasks/server_setup.yml
Commit message (Collapse)AuthorAgeFilesLines
* Parametrize server-side borg userColin Wilk2026-06-281-7/+57
| | | | Adds option to choose a non-default borg backup user on the server.
* borg!: support multiple backups to same targetColin Wilk2026-06-271-12/+0
| | | | | | | | | | | | | | | | | | This brings support for multiple backups pointing to the same borg server, different repositories, from the same client. We support this by parsing the SSH authorized key file first and appending allowed repositories to allow independent definitions of the borg targets. So that the decryption_keys do not clash we include the repository name as well as the host in the key. This will lead to new keys being created for existing hosts in the new format. Old Format: {{ combine({inventory_hostname: borg_keys.stdout}) }} New Format: {{ combine({(inventory_hostname ~ '_' ~ borg_repo_name): borg_keys.stdout}) }} If upgrading from an older version that used just the hostname as the key, your existing `decryption_keys.yml` can be manually removed once the new format is also added.
* Update and fix pre-commit hooksColin Wilk2026-06-261-5/+5
|
* Add YAMLLint rulesColin Wilk2023-05-241-4/+4
| | | | | | | | | | | | | | | Fix linting errors that came up with the new rules Main changes: * Enforce YAML document start headers * Enforce spacing with commas, colons and hyphens * Enforce indentation * Enforce use of quotes only then required * Enforce use of single quotes over double quotes * Enforce use of true/false over yes/no and derivatives * [..] Other minor rules that were already followed Signed-off-by: Colin Wilk <colin.wilk@tum.de>
* initColin Wilk2023-05-241-0/+22
Signed-off-by: Colin Wilk <colin.wilk@tum.de>