Initialize borgmatic repository
This commit is contained in:
parent
3f3b7da7cc
commit
8a30c77d86
2 changed files with 8 additions and 0 deletions
|
@ -53,3 +53,10 @@
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
mode: 0600
|
mode: 0600
|
||||||
|
|
||||||
|
- name: Initialize borg repository
|
||||||
|
become: true
|
||||||
|
ansible.builtin.command:
|
||||||
|
cmd: borgmatic init --encryption repokey
|
||||||
|
register: borgmatic_init
|
||||||
|
changed_when: borgmatic_init.stderr != ''
|
||||||
|
|
|
@ -26,6 +26,7 @@ location:
|
||||||
|
|
||||||
storage:
|
storage:
|
||||||
encryption_passphrase: "{{ borg_passphrase }}"
|
encryption_passphrase: "{{ borg_passphrase }}"
|
||||||
|
ssh_command: ssh -o StrictHostKeyChecking=accept-new
|
||||||
|
|
||||||
retention:
|
retention:
|
||||||
keep_daily: 7
|
keep_daily: 7
|
||||||
|
|
Loading…
Add table
Reference in a new issue