Eu tenho um problema quando tento implantar um aplicativo Rails via Capistrano. A seguir estão meus arquivos de configuração atuais com nomes de servidor redigidos:
config / deploy.rb
lock '3.2.1'
set :application, "my_app"
set :repo_url, "my.server.example.com:/path/to/my_app.git"
set :branch, 'master'
set :use_sudo, false
set :deploy_to, "/srv/#{fetch(:application)}"
config / deploy / production.rb
role :app, "my.server.example.com"
role :web, "my.server.example.com"
role :db, "my.server.example.com", :primary => true
server 'my.server.example.com',
user: 'root',
roles: %w{web app},
ssh_options: {
user: 'me', # overrides user setting above
keys: %w(/home/me/.ssh/id_rsa),
forward_agent: false,
auth_methods: %w(publickey),
verbose: :debug
}
Basicamente, há três computadores envolvidos:
-
localhost , minha estação de trabalho
-
my.server.example.com , hospeda o aplicativo rails
-
my.git.example.com , hospeda os repositórios git.
Quando tento implantar, recebo o seguinte erro:
[me@localhost my_app]$ cap production deploy
INFO [d2263887] Running /usr/bin/env mkdir -p /tmp/my_app/ on my.server.example.com
DEBUG [d2263887] Command: /usr/bin/env mkdir -p /tmp/my_app/
INFO [d2263887] Finished in 0.713 seconds with exit status 0 (successful).
DEBUG Uploading /tmp/my_app/git-ssh.sh 0.0%
INFO Uploading /tmp/my_app/git-ssh.sh 100.0%
INFO [acbfa48d] Running /usr/bin/env chmod +x /tmp/my_app/git-ssh.sh on my.server.example.com
DEBUG [acbfa48d] Command: /usr/bin/env chmod +x /tmp/my_app/git-ssh.sh
INFO [acbfa48d] Finished in 0.005 seconds with exit status 0 (successful).
DEBUG [b2d0392c] Running /usr/bin/env git ls-remote -h my.git.example.com:/path/to/repos/my_app.git on my.server.example.com
DEBUG [b2d0392c] Command: ( GIT_ASKPASS=/bin/echo GIT_SSH=/tmp/my_app/git-ssh.sh /usr/bin/env git ls-remote -h my.git.example.com:/path/to/repos/my_app.git )
DEBUG [b2d0392c] fatal: '/path/to/repos/my_app.git' does not appear to be a git repository
DEBUG [b2d0392c] fatal: The remote end hung up unexpectedly
DEBUG [b2d0392c] Finished in 1.025 seconds with exit status 128 (failed).
Mais investigações me levam a acreditar que a linha
git ls-remote -h my.git.example.com:/path/to/repos/my_app.git
produz o erro, pois ele me fornece a mesma mensagem de erro quando tento executá-lo em meu.servidor.exemplo.com . Funciona se eu modificá-lo para:
git ls-remote -h me@my.git.example.com:/path/to/repos/my_app.git
Por isso, tenho a strong impressão de que meu usuário está de alguma forma configurado errado e apreciaria qualquer ponteiro na direção certa.