Skip to content

Commit

Permalink
Fix for the issue Juniper#607
Browse files Browse the repository at this point in the history
  • Loading branch information
chidanandpujar committed May 16, 2024
1 parent 3670c21 commit 4c6f46d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ansible_collections/juniper/device/plugins/modules/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -942,6 +942,9 @@ def main():
type='int',
aliases=['confirm'],
default=None),
timeout=dict(required=False,
type='int',
default=30),
comment=dict(required=False,
type='str',
default=None),
Expand Down Expand Up @@ -995,6 +998,7 @@ def main():
commit_sync = junos_module.params.get('commit_sync')
commit_force_sync = junos_module.params.get('commit_force_sync')
confirmed = junos_module.params.get('confirmed')
timeout = junos_module.params.get('timeout')
comment = junos_module.params.get('comment')
check_commit_wait = junos_module.params.get('check_commit_wait')
model = junos_module.params.get('model')
Expand Down Expand Up @@ -1227,6 +1231,7 @@ def main():
junos_module.commit_configuration(ignore_warning=ignore_warning,
comment=comment,
confirmed=confirmed,
timeout=timeout,
full=commit_full,
sync=commit_sync,
force_sync=commit_force_sync)
Expand Down

0 comments on commit 4c6f46d

Please sign in to comment.