Fix copy of exported keys

This commit is contained in:
phil 2023-04-08 23:44:07 +02:00
parent 4e6628e86c
commit 72555d15c4

View file

@ -28,10 +28,11 @@
- name: "Borg | Export repo key"
ansible.builtin.command:
cmd: "borg key export {{ item }} > {{ borg_key_export_path }}/{{ item }}.key"
cmd: "borg key export {{ item }} {{ borg_key_export_path }}/{{ item | replace('ssh://', '') | replace('@', '') | replace('.', '_') | replace('/', '') }}"
loop: "{{ borg_repository }}"
- name: "Borg | Save repo key to localhost"
ansible.builtin.fetch:
src: "{{ repo_key_export.stdout }}"
ansible.posix.synchronize:
mode: pull
src: "{{ borg_key_export_path }}"
dest: "~/"