diff options
author | Max Riveiro <kavu13@gmail.com> | 2014-03-24 00:23:02 +0400 |
---|---|---|
committer | Max Riveiro <kavu13@gmail.com> | 2015-01-31 18:40:20 +0300 |
commit | 9e8dae749886b04126fb249e48b4e8a16a90770a (patch) | |
tree | 173f20bce292e56d12828ece89055451d1459db0 /bin/ansible-pull | |
parent | 4fb7c1bff487ab9a2be002500a3155ba02690cc7 (diff) | |
download | ansible-9e8dae749886b04126fb249e48b4e8a16a90770a.tar.gz |
Fix #6346. Add key_file and accept_hostkey to ansible-pull
Signed-off-by: Max Riveiro <kavu13@gmail.com>
Diffstat (limited to 'bin/ansible-pull')
-rwxr-xr-x | bin/ansible-pull | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/bin/ansible-pull b/bin/ansible-pull index 67b969fdae..0cea19fb35 100755 --- a/bin/ansible-pull +++ b/bin/ansible-pull @@ -40,7 +40,6 @@ import os import shutil -import subprocess import sys import datetime import socket @@ -137,6 +136,10 @@ def main(args): help='ask for sudo password') parser.add_option('-t', '--tags', dest='tags', default=False, help='only run plays and tasks tagged with these values') + parser.add_option('--accept-host-key', default=False, dest='accept_host_key', action='store_true', + help='adds the hostkey for the repo url if not already added') + parser.add_option('--key-file', dest='key_file', + help="Pass '-i <key_file>' to the SSH arguments used by git.") options, args = parser.parse_args(args) hostname = socket.getfqdn() @@ -170,6 +173,15 @@ def main(args): if options.checkout: repo_opts += ' version=%s' % options.checkout + + # Only git module is supported + if options.module_name == DEFAULT_REPO_TYPE: + if options.accept_host_key: + repo_opts += ' accept_hostkey=yes' + + if options.key_file: + repo_opts += ' key_file=%s' % options.key_file + path = utils.plugins.module_finder.find_plugin(options.module_name) if path is None: sys.stderr.write("module '%s' not found.\n" % options.module_name) |