From 916b053dca5436ebd147111c466be06b9e3f9f84 Mon Sep 17 00:00:00 2001 From: awlx Date: Thu, 25 Feb 2016 13:50:39 +0100 Subject: Added support for SSH Key usage and ssh-agent-forwarding --- lib/oxidized/hook/githubrepo.rb | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'lib/oxidized/hook') diff --git a/lib/oxidized/hook/githubrepo.rb b/lib/oxidized/hook/githubrepo.rb index 7fc6677..b959f6d 100644 --- a/lib/oxidized/hook/githubrepo.rb +++ b/lib/oxidized/hook/githubrepo.rb @@ -49,8 +49,13 @@ class GithubRepo < Oxidized::Hook log "Using https auth", :debug Rugged::Credentials::UserPassword.new(username: cfg.username, password: cfg.password) else - log "Using ssh auth", :debug - Rugged::Credentials::SshKeyFromAgent.new(username: 'git') + @credentials ||= if cfg.has_key?('pubkey') && cfg.has_key?('privkey') + log "Using ssh auth with key", :debug + Rugged::Credentials::SshKey.new(username: 'git', publickey: File.expand_path(cfg.pubkey), privatekey: File.expand_path(cfg.privkey)) + else + log "Using ssh auth with agentforwarding", :debug + Rugged::Credentials::SshKeyFromAgent.new(username: 'git') + end end end -- cgit v1.2.1