From 27cc36f9c07a69e02c934c36c53f35df1ace7a77 Mon Sep 17 00:00:00 2001 From: Jason Rothstein Date: Fri, 26 Jun 2026 20:38:07 -0500 Subject: [PATCH] Removed known host manipulation Signed-off-by: Jason Rothstein --- known_hosts.yml | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 known_hosts.yml diff --git a/known_hosts.yml b/known_hosts.yml deleted file mode 100644 index 2a68492..0000000 --- a/known_hosts.yml +++ /dev/null @@ -1,15 +0,0 @@ ---- -- name: 'all' - hosts: 'all' - gather_facts: false - serial: 1 - tasks: - - name: 'Remove known_host file entries' - delegate_to: 'localhost' - ansible.builtin.shell: - ssh-keygen -f ~/.ssh/known_hosts -R {{ inventory_hostname }} - - name: 'Add known_hosts file entries' - delegate_to: 'localhost' - ansible.builtin.shell: - ssh-keyscan {{ inventory_hostname }} >> ~/.ssh/known_hosts -...