mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 11:51:26 -07:00
Fix rollback option in cli_config module (#44834)
* Fix rollback option in cli_config module * Update rollback flag in cliconf plugins * Add rollback api for junos cliconf plugin * Update doc * Update doc
This commit is contained in:
parent
a5b02d6c7c
commit
eb9c75caad
6 changed files with 67 additions and 13 deletions
|
@ -268,7 +268,7 @@ class Cliconf(CliconfBase):
|
|||
return {
|
||||
'supports_diff_replace': True,
|
||||
'supports_commit': True if self.supports_sessions else False,
|
||||
'supports_rollback': True if self.supports_sessions else False,
|
||||
'supports_rollback': False,
|
||||
'supports_defaults': False,
|
||||
'supports_onbox_diff': True if self.supports_sessions else False,
|
||||
'supports_commit_comment': False,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue