diff --git a/tasks/main.yml b/tasks/main.yml index beb06ccddb4f6eb506ccb5003d436a9dbbf79ee5..f25686debf6fc2f5ade49a268b5d05eebd93c760 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -6,7 +6,7 @@ notify: update initramfs template: src: config.j2 - dest: /etc/dropbear-initramfs/config + dest: "{% if (ansible_distribution_release|lower) in ['buster', 'bullseye'] %}/etc/dropbear-initramfs/config{% else %}/etc/dropbear/initramfs/dropbear.conf{% endif %}" mode: 0644 owner: root group: root @@ -16,7 +16,7 @@ notify: update initramfs template: src: authorized_keys.j2 - dest: /etc/dropbear-initramfs/authorized_keys + dest: "{% if (ansible_distribution_release|lower) in ['buster', 'bullseye'] %}/etc/dropbear-initramfs/authorized_keys{% else %}/etc/dropbear/initramfs/authorized_keys{% endif %}" mode: 0644 owner: root group: root @@ -27,7 +27,7 @@ copy: src: /root/.ssh/authorized_keys remote_src: true - dest: /etc/dropbear-initramfs/authorized_keys + dest: "{% if (ansible_distribution_release|lower) in ['buster', 'bullseye'] %}/etc/dropbear-initramfs/authorized_keys{% else %}/etc/dropbear/initramfs/authorized_keys{% endif %}" mode: 0644 owner: root group: root