diff options
author | Wild Kat <wk@futureinquestion.net> | 2018-03-20 23:15:34 +0100 |
---|---|---|
committer | Wild Kat <wk@futureinquestion.net> | 2018-03-20 23:15:34 +0100 |
commit | 6f672654c7e725bc828b6577297b86d501780c50 (patch) | |
tree | cf29588894d0c071f0e6b393671c84b7dd605163 /lib/oxidized/hook/githubrepo.rb | |
parent | baee367bfec7ec5241ad7e893de7df8ea7eec1e7 (diff) | |
parent | e7075d18e055613cb0324f0fc8eecfe7adeeac56 (diff) |
refactor snr support into dcnos model
Diffstat (limited to 'lib/oxidized/hook/githubrepo.rb')
-rw-r--r-- | lib/oxidized/hook/githubrepo.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/oxidized/hook/githubrepo.rb b/lib/oxidized/hook/githubrepo.rb index d33e54e..f74b22a 100644 --- a/lib/oxidized/hook/githubrepo.rb +++ b/lib/oxidized/hook/githubrepo.rb @@ -51,7 +51,7 @@ class GithubRepo < Oxidized::Hook else if cfg.has_key?('publickey') && cfg.has_key?('privatekey') log "Using ssh auth with key", :debug - Rugged::Credentials::SshKey.new(username: 'git', publickey: File.expand_path(cfg.publickey), privatekey: File.expand_path(cfg.privatekey)) + Rugged::Credentials::SshKey.new(username: 'git', publickey: File.expand_path(cfg.publickey), privatekey: File.expand_path(cfg.privatekey), passphrase: ENV["OXIDIZED_SSH_PASSPHRASE"]) else log "Using ssh auth with agentforwarding", :debug Rugged::Credentials::SshKeyFromAgent.new(username: 'git') |