diff --git a/clean_known_hosts.yml b/clean_known_hosts.yml new file mode 100644 index 0000000..edc7bb5 --- /dev/null +++ b/clean_known_hosts.yml @@ -0,0 +1,9 @@ +--- +- hosts: localhost + become: yes + 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 \ No newline at end of file diff --git a/hello.yml b/hello.yml deleted file mode 100644 index 7d0b803..0000000 --- a/hello.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -- name: Echo - hosts: all - - tasks: - - name: Print hello - debug: - msg: Hello, world!