From 970a107492c31a43bb77f6f5e0096b41adc2c2f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Gon=C3=A7alves?= Date: Mon, 12 Dec 2022 22:51:55 +0100 Subject: refactor: split sshd and ssh key synchronization --- roles/sshd/tasks/synchronize_keys.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 roles/sshd/tasks/synchronize_keys.yml (limited to 'roles/sshd/tasks/synchronize_keys.yml') diff --git a/roles/sshd/tasks/synchronize_keys.yml b/roles/sshd/tasks/synchronize_keys.yml deleted file mode 100644 index 32f6b5a..0000000 --- a/roles/sshd/tasks/synchronize_keys.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- - -- name: get ssh keys for all users - ansible.builtin.find: - paths: files/keys - file_type: link - recurse: true - delegate_to: localhost - run_once: true - register: result - -- name: synchronize ssh keys - ansible.posix.authorized_key: - user: "{{ item.path | dirname | basename }}" - state: present - key: "{{ lookup('file', item.path) }}" - loop_control: - label: "{{ item.path }} -> user: {{ item.path | dirname | basename }}" - loop: "{{ result.files }}" - failed_when: false -- cgit v1.2.3