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
3 changes: 2 additions & 1 deletion library/juniper_junos_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,8 @@ def import_juniper_junos_common():
# Ansible bug is fixed.
no_log=True,
check_invalid_arguments=False,
bypass_checks=True
bypass_checks=True,
supports_check_mode=True
)
import_path = module.params.get('_module_utils_path')
if import_path is not None:
Expand Down
3 changes: 2 additions & 1 deletion library/juniper_junos_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -769,7 +769,8 @@ def import_juniper_junos_common():
# Ansible bug is fixed.
no_log=True,
check_invalid_arguments=False,
bypass_checks=True
bypass_checks=True,
supports_check_mode=True
)
import_path = module.params.get('_module_utils_path')
if import_path is not None:
Expand Down
3 changes: 2 additions & 1 deletion library/juniper_junos_facts.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,8 @@ def import_juniper_junos_common():
# Ansible bug is fixed.
no_log=True,
check_invalid_arguments=False,
bypass_checks=True
bypass_checks=True,
supports_check_mode=True
)
import_path = module.params.get('_module_utils_path')
if import_path is not None:
Expand Down
3 changes: 2 additions & 1 deletion library/juniper_junos_jsnapy.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,8 @@ def import_juniper_junos_common():
# Ansible bug is fixed.
no_log=True,
check_invalid_arguments=False,
bypass_checks=True
bypass_checks=True,
supports_check_mode=True
)
import_path = module.params.get('_module_utils_path')
if import_path is not None:
Expand Down
3 changes: 2 additions & 1 deletion library/juniper_junos_ping.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,8 @@ def import_juniper_junos_common():
# Ansible bug is fixed.
no_log=True,
check_invalid_arguments=False,
bypass_checks=True
bypass_checks=True,
supports_check_mode=True
)
import_path = module.params.get('_module_utils_path')
if import_path is not None:
Expand Down
3 changes: 2 additions & 1 deletion library/juniper_junos_pmtud.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,8 @@ def import_juniper_junos_common():
# Ansible bug is fixed.
no_log=True,
check_invalid_arguments=False,
bypass_checks=True
bypass_checks=True,
supports_check_mode=True
)
import_path = module.params.get('_module_utils_path')
if import_path is not None:
Expand Down
3 changes: 2 additions & 1 deletion library/juniper_junos_rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,8 @@ def import_juniper_junos_common():
# Ansible bug is fixed.
no_log=True,
check_invalid_arguments=False,
bypass_checks=True
bypass_checks=True,
supports_check_mode=True
)
import_path = module.params.get('_module_utils_path')
if import_path is not None:
Expand Down
3 changes: 2 additions & 1 deletion library/juniper_junos_software.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,8 @@ def import_juniper_junos_common():
# Ansible bug is fixed.
no_log=True,
check_invalid_arguments=False,
bypass_checks=True
bypass_checks=True,
supports_check_mode=True
)
import_path = module.params.get('_module_utils_path')
if import_path is not None:
Expand Down
3 changes: 2 additions & 1 deletion library/juniper_junos_srx_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,8 @@ def import_juniper_junos_common():
# Ansible bug is fixed.
no_log=True,
check_invalid_arguments=False,
bypass_checks=True
bypass_checks=True,
supports_check_mode=True
)
import_path = module.params.get('_module_utils_path')
if import_path is not None:
Expand Down
3 changes: 2 additions & 1 deletion library/juniper_junos_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,8 @@ def import_juniper_junos_common():
# Ansible bug is fixed.
no_log=True,
check_invalid_arguments=False,
bypass_checks=True
bypass_checks=True,
supports_check_mode=True
)
import_path = module.params.get('_module_utils_path')
if import_path is not None:
Expand Down
3 changes: 2 additions & 1 deletion library/juniper_junos_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,8 @@ def import_juniper_junos_common():
# Ansible bug is fixed.
no_log=True,
check_invalid_arguments=False,
bypass_checks=True
bypass_checks=True,
supports_check_mode=True
)
import_path = module.params.get('_module_utils_path')
if import_path is not None:
Expand Down