Fixes #5750 Fail on missing ~/.ssh and ignore accept_hostkey if stricthoskeychecking is off

This commit is contained in:
James Tanner 2014-01-28 11:49:35 -05:00
parent 98ff0f500e
commit dc51bb5389

View file

@ -49,6 +49,8 @@ options:
version_added: "1.5"
description:
- Add the hostkey for the repo url if not already added.
If ssh_args contains "-o StrictHostKeyChecking=no", this
parameter is ignored.
ssh_opts:
required: false
default: None
@ -445,8 +447,11 @@ def main():
set_git_ssh(ssh_wrapper, key_file, ssh_opts)
# add the git repo's hostkey
#if module.params['accept_hostkey']:
add_git_host_key(module, repo, accept_hostkey=module.params['accept_hostkey'])
if module.params['ssh_opts'] is not None:
if not "-o StrictHostKeyChecking=no" in module.params['ssh_opts']:
add_git_host_key(module, repo, accept_hostkey=module.params['accept_hostkey'])
else:
add_git_host_key(module, repo, accept_hostkey=module.params['accept_hostkey'])
if bare:
gitconfig = os.path.join(dest, 'config')