X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=snaps%2Fprovisioning%2Fansible_utils.py;h=63f26e1294c2d61d3bd1c68bceb35ae7a40aa426;hb=125a7061b19afdd3c2e4f0e463e85572dfb3783d;hp=aa1de9bfa5f21c6ba348affd711c076954e7c5e9;hpb=f2fc55fc622b57c078615d847443023fea0799e2;p=snaps.git diff --git a/snaps/provisioning/ansible_utils.py b/snaps/provisioning/ansible_utils.py index aa1de9b..63f26e1 100644 --- a/snaps/provisioning/ansible_utils.py +++ b/snaps/provisioning/ansible_utils.py @@ -76,14 +76,14 @@ def apply_playbook(playbook_path, hosts_inv, host_user, ssh_priv_key_file_path, 'connection', 'module_path', 'forks', 'remote_user', 'private_key_file', 'ssh_common_args', 'ssh_extra_args', 'become', 'become_method', 'become_user', 'verbosity', - 'check']) + 'check', 'timeout']) ansible_opts = options( listtags=False, listtasks=False, listhosts=False, syntax=False, connection='ssh', module_path=None, forks=100, remote_user=host_user, private_key_file=pk_file_path, ssh_common_args=None, ssh_extra_args=ssh_extra_args, become=None, become_method=None, - become_user=None, verbosity=11111, check=False) + become_user=None, verbosity=11111, check=False, timeout=30) logger.debug('Setting up Ansible Playbook Executor for playbook - ' + playbook_path)