Skip to content

Instantly share code, notes, and snippets.

@tsoliangwu0130
Forked from maxim/task.yml
Created October 31, 2017 16:32
Show Gist options
  • Select an option

  • Save tsoliangwu0130/b75453a76d2ac46e9a755ba0c482df1a to your computer and use it in GitHub Desktop.

Select an option

Save tsoliangwu0130/b75453a76d2ac46e9a755ba0c482df1a 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