Rename backup_ssh_command to borg_ssh_command, tis was a double definition

This commit is contained in:
Frank Dornheim 2023-03-11 22:04:42 +01:00
parent c810423b30
commit 3d152d52d6
2 changed files with 5 additions and 8 deletions

View File

@ -48,8 +48,8 @@ Main features:
borg_encryption_passphrase: CHANGEME
borg_repository: m5vz9gp4@m5vz9gp4.repo.borgbase.com:repo
borgmatic_timer: systemd
backup_ssh_key_file: "{{ backup_user_info.home }}/.ssh/id_rsa"
backup_ssh_command: "ssh -i {{ backup_ssh_key_file }} -o StrictHostKeyChecking=no"
borg_ssh_key_file: "{{ backup_user_info.home }}/.ssh/id_rsa"
borg_ssh_command: "ssh -i {{ backup_ssh_key_file }} -o StrictHostKeyChecking=no"
borgmatic_timer: systemd
borgbackup_user: "srv_backup"
borgbackup_group: "srv_backup"

View File

@ -5,7 +5,9 @@ borg_one_file_system: true
borg_exclude_from: []
borg_encryption_passcommand: false
borg_lock_wait_time: 5
borg_ssh_command: false # If you use a useraccount and not root see at the bottom of this file
borg_ssh_command: false # If you use a useraccount and not root see the next lines
# borg_ssh_key_file: "{{ backup_user_info.home }}/.ssh/id_rsa"
# borg_ssh_command: "ssh -i {{ backup_ssh_key_file }} -o StrictHostKeyChecking=no"
borg_remote_path: false
borg_remote_rate_limit: 0
borg_retention_policy:
@ -44,9 +46,4 @@ borgmatic_version: false
borg_venv_path: "/opt/borgmatic"
borgbackup_user: "root"
borgbackup_group: "root"
# backup_ssh_key_file: "{{ backup_user_info.home }}/.ssh/id_rsa"
# backup_ssh_command: "ssh -i {{ backup_ssh_key_file }} -o StrictHostKeyChecking=no"
# borg_ssh_command: "{{ backup_ssh_command }}"
...