Skip to content

Instantly share code, notes, and snippets.

@gumeniukcom
Forked from maxim/task.yml
Last active September 8, 2015 15:14
Show Gist options
  • Save gumeniukcom/d3e18556c8df3d27b261 to your computer and use it in GitHub Desktop.
Save gumeniukcom/d3e18556c8df3d27b261 to your computer and use it in GitHub Desktop.
Adding github to known_hosts with ansible
- name: ensure github.com is a known host
lineinfile:
dest: /root/.ssh/known_hosts
create: yes
state: present
line: "{{ lookup('pipe', 'ssh-keyscan -t rsa github.com') }}"
regexp: "^github\\.com"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment