diff options
Diffstat (limited to 'defaults')
| -rw-r--r-- | defaults/main.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/defaults/main.yml b/defaults/main.yml index 337ca76..b3d901c 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -1,5 +1,24 @@ --- ################################################################################ +# Borg Client User Configuration +################################################################################ + +# User that runs all client-side operations (SSH key, borg init, backups). +# Defaults to root. Set to a non-root user for unprivileged backups. +# The user must exist before running the role. +borg_client_user: root + +# Home directory of the borg_client_user. +# If not set, the role auto-detects it from the passwd database. +# Override this only if you need a non-standard home directory location. +# --- +# borg_client_user_home: /home/backup + +# SSH key type for borg client authentication. +# Options: ed25519 (recommended), rsa, ecdsa +borg_ssh_key_type: rsa + +################################################################################ # Borg Server Host Configuration ################################################################################ |