Eu tenho um projeto e usamos o Vagrant para o nosso env de desenvolvimento. No Mac / Unix, o provisionamento funciona perfeitamente, exceto no Windows, o problema é que o agente de encaminhamento não funciona no Windows e, portanto, não consigo acessar o repositório particular do GitHub.
Eu consertei adicionando isso no Vagrantfile
:
# Windows github ssh keys fix
if Vagrant::Util::Platform.windows?
# You MUST have a ~/.ssh/github_rsa (GitHub specific) SSH key to copy to VM
if File.exists?(File.join(Dir.home, ".ssh", "github_rsa"))
# Read local machine's GitHub SSH Key (~/.ssh/github_rsa)
github_ssh_key = File.read(File.join(Dir.home, ".ssh", "github_rsa"))
# Copy it to VM as the /root/.ssh/id_rsa key
config.vm.provision :shell, :inline => "echo 'Windows-specific: Copying local GitHub SSH Key to VM for provisioning...' && mkdir -p /root/.ssh && echo '#{github_ssh_key}' > /root/.ssh/id_rsa && chmod 600 /root/.ssh/id_rsa"
else
# Else, throw a Vagrant Error. Cannot successfully startup on Windows without a GitHub SSH Key!
raise Vagrant::Errors::VagrantError, "\n\nERROR: GitHub SSH Key not found at ~/.ssh/github_rsa (required on Windows).\nYou can generate this key manually OR by installing GitHub for Windows (http://windows.github.com/)\n\n"
end
end
A clonagem é feita com este script Puppet (que finalmente funciona no Windows) quando o script acima é adicionado ao Vagrantfile
:
class install_repos {
vcsrepo { '/home/vagrant/git_project':
ensure => present,
provider => git,
source => '[email protected]:proj_path',
require => Class['known_hosts']
}
}
Nesse mesmo arquivo, tenho o seguinte no Gemfile, onde algumas gemas são apontadas para os repositórios do GitHub:
exec { 'install_project':
command => 'bundle install',
cwd => '/vagrant',
provider => 'shell',
require => [
Class['install_ruby'],
Class['known_hosts'],
Class['install_repos'],
]
}
O bundle install
continua falhando se eu abrir o SSH para a instância do vagrant e testar minha conexão do Github ssh -T [email protected]
Eu recebo o seguinte:
Warning: Permanently added the RSA host key for IP address '192.30.252.130' to the list of known hosts.
Permission denied (publickey).
Não importa o que eu tente, não consigo trabalhar no Windows e não tenho certeza do que realmente está acontecendo.