2022-06-13 17:04:21 +02:00
|
|
|
---
|
|
|
|
- hosts: localhost
|
2022-06-13 17:07:00 +02:00
|
|
|
#become: yes
|
2022-06-13 17:04:21 +02:00
|
|
|
tasks:
|
|
|
|
- name: Show contents of known_hosts file
|
|
|
|
shell: |
|
|
|
|
cat /var/lib/awx/.ssh/known_hosts
|
|
|
|
ignore_errors: yes
|
|
|
|
delegate_to: 127.0.0.1
|