sanoid/syncoid: fix private-key formatting #143

Merged
mg merged 2 commits from t into master 2024-07-23 18:55:37 +02:00
2 changed files with 5 additions and 2 deletions

View file

@ -1,8 +1,8 @@
---
- name: template ssh private key
become: true
ansible.builtin.copy:
content: "{{ sanoid_syncoid_ssh_privkey }}"
ansible.builtin.template:
src: private_key.j2
dest: "/etc/sanoid/.ssh/id_sanoid"
owner: "{{ sanoid_user }}"
group: "{{ sanoid_user_group }}"
@ -11,6 +11,8 @@
when:
- sanoid_syncoid_destination_host
- name: add user to sudoers
become: true
ansible.builtin.blockinfile:

View file

@ -0,0 +1 @@
{{ sanoid_syncoid_ssh_privkey }}