Compare commits

..

No commits in common. "33fd2276349ea3d59d17f57d40c17e9113904b39" and "9dcbb0d0af84a3a79f21d5d91136c5c80b0905b2" have entirely different histories.

2 changed files with 6 additions and 27 deletions

View File

@ -2,29 +2,23 @@
collections:
- name: 'ansible.netcommon'
- name: 'ansible.posix'
- name: 'ansible.utils'
- name: 'ansible.windows'
- name: 'awx.awx'
- name: 'community.crypto'
- name: 'community.digitalocean'
- name: 'community.dns'
- name: 'community.docker'
- name: 'community.general'
- name: 'community.grafana'
- name: 'community.hashi_vault'
- name: 'community.kubernetes'
- name: 'community.libvirt'
- name: 'community.mysql'
- name: 'community.network'
- name: 'community.postgresql'
- name: 'community.proxysql'
- name: 'community.rabbitmq'
- name: 'community.network'
- name: 'community.windows'
- name: 'community.zabbix'
- name: 'containers.podman'
- name: 'grafana.grafana'
- name: 'gluster.gluster'
- name: 'kubernetes.core'
- name: 'kubevirt.core'
- name: 'openstack.cloud'
- name: 'microsoft.ad'
- name: 'microsoft.iis'
- name: 'vultr.cloud'
...
- name: 'ovirt.ovirt'

View File

@ -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
...