11 lines
219 B
YAML
11 lines
219 B
YAML
---
|
|
- name: Add good keys
|
|
lineinfile:
|
|
path: "{{ authorized_keys_file }}"
|
|
line: "{{ item }}"
|
|
create: yes
|
|
state: present
|
|
with_items: "{{ good_keys }}"
|
|
notify:
|
|
- Cleanup Comments
|
|
- Add Comment |