11 lines
274 B
YAML
11 lines
274 B
YAML
|
- name: Delete old host SSH keys
|
||
|
file:
|
||
|
path: "{{ item }}"
|
||
|
state: absent
|
||
|
with_items:
|
||
|
- /etc/ssh/ssh_host_ecdsa_key
|
||
|
- /etc/ssh/ssh_host_ed25519_key
|
||
|
- /etc/ssh/ssh_host_rsa_key
|
||
|
- name: Regenerate host SSH keys
|
||
|
command: dpkg-reconfigure openssh-server
|