8 lines
192 B
YAML
8 lines
192 B
YAML
---
|
|
- name: Create global SSH known_hosts
|
|
ansible.builtin.copy:
|
|
dest: /etc/ssh/ssh_known_hosts
|
|
src: ssh_known_hosts
|
|
mode: "0644"
|
|
owner: root
|
|
group: "{{ ansible_wheel }}"
|