diff options
author | binary <me@rgoncalves.se> | 2021-02-08 14:55:48 +0100 |
---|---|---|
committer | binary <me@rgoncalves.se> | 2021-02-08 14:55:48 +0100 |
commit | bd83904d446597821d613ad2c8710ba7580dfd0d (patch) | |
tree | 21b171a175a0fea22885fbfcdad2121bd482e638 /roles/sshd | |
parent | 9cb1b85b6cf95be0218590fe485fcf1dcfed039a (diff) | |
download | infrastructure-bd83904d446597821d613ad2c8710ba7580dfd0d.tar.gz |
Using subdirectory for task names breaks ansible on openbsd
Diffstat (limited to 'roles/sshd')
-rw-r--r-- | roles/sshd/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/sshd/tasks/main.yml b/roles/sshd/tasks/main.yml index db46aad..ef19c9b 100644 --- a/roles/sshd/tasks/main.yml +++ b/roles/sshd/tasks/main.yml @@ -26,7 +26,7 @@ var: keys - name: synchronize ssh keys - ansible.posix.authorized_key: + authorized_key: user: "{{ item.path | dirname | basename }}" state: present key: "{{ lookup('file', item.path) }}" |