Compare commits

...

2 commits

Author SHA1 Message Date
9085c81d0d
create-user/authkeys: become 2025-07-27 13:23:38 -05:00
4e087155d8
bootstrap: use 'truthy', not bool 2025-07-27 13:23:15 -05:00
2 changed files with 2 additions and 1 deletions

View file

@ -35,4 +35,4 @@
enabled: true
when:
- auto_update is defined
- auto_update | bool
- auto_update is truthy(convert_bool=True)

View file

@ -32,6 +32,7 @@
- name: "Copy '~/.ssh/id_*.pub' (on controller) to authorized_keys for '{{ create_username }}'"
tags: ['keys']
become: true
ansible.posix.authorized_key:
user: "{{ create_username }}"
state: present