Allow junos_config changes the candidate configuration only (#61969)
This allows junos_config to changes the candidate configuration only and does not commit it as the active configuration at once w/ the 'check_commit' option.
This commit is contained in:
parent
7b28960ebe
commit
483e76ee58
1 changed files with 2 additions and 1 deletions
|
@ -448,7 +448,8 @@ def main():
|
|||
if diff:
|
||||
if commit:
|
||||
kwargs = {
|
||||
'comment': module.params['comment']
|
||||
'comment': module.params['comment'],
|
||||
'check': module.params['check_commit']
|
||||
}
|
||||
|
||||
confirm = module.params['confirm']
|
||||
|
|
Loading…
Reference in a new issue