Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@webhat
Last active January 2, 2016 21:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webhat/8362192 to your computer and use it in GitHub Desktop.
Save webhat/8362192 to your computer and use it in GitHub Desktop.
I use this capistrano task to solve the Know Host bug that github has. https://help.github.com/articles/deploying-with-capistrano#known-hosts-bug
namespace :github do
desc 'Add Github to known hosts'
task :ssh do
on roles(:all) do
execute "echo 'github.com,207.97.227.239 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ==' >> ~/.ssh/known_hosts"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment