Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,10 @@ def main():
install_params['package'] = remote_filename
if remote_dir is not None:
install_params['remote_path'] = remote_dir
install_params['progress'] = define_progress_callback(junos_module)
if junos_module.conn_type != "local":
install_params['progress'] = True
else:
install_params['progress'] = define_progress_callback(junos_module)
install_params['cleanfs'] = cleanfs
install_params['no_copy'] = no_copy
install_params['timeout'] = install_timeout
Expand Down
3 changes: 3 additions & 0 deletions tests/ansible.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@
hash_behaviour=merge
roles_path = ~/.ansible/roles

[persistent_connection]
command_timeout = 300