Skip to content

Commit

Permalink
Merge pull request #22 from mbeijen/exclusive-pubkeys-2
Browse files Browse the repository at this point in the history
Fix: pubkeys variable template error
  • Loading branch information
DO1JLR authored Jun 6, 2024
2 parents 65a26e4 + a3b863f commit c5c811b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/user/tasks/pubkeys.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
user: "{{ user.name }}"
state: 'present'
key: "{{ user.pubkeys | default() }}"
exclusive: "{{ user.exclusive_pubkeys | user.exklusive_pubkeys | default(true) }}"
exclusive: "{{ user.exclusive_pubkeys | default(user.exklusive_pubkeys | default(true)) }}"
loop: "{{ _l3d_users__merged_users }}"
loop_control:
label: "user={{ user.name }}"
Expand Down

0 comments on commit c5c811b

Please sign in to comment.