mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix cli_config backup option check (#50926)
Fixes #50925 * If config or rollback option is None and backup=yes in that case add check so edit_config() is not invoked as it is not required.
This commit is contained in:
parent
27f4a1f927
commit
9d54e58216
1 changed files with 9 additions and 7 deletions
|
@ -201,14 +201,13 @@ def validate_args(module, capabilities):
|
|||
module.fail_json(msg='diff_ignore_lines is not supported on this platform')
|
||||
|
||||
|
||||
def run(module, capabilities, connection, candidate, running):
|
||||
def run(module, capabilities, connection, candidate, running, rollback_id):
|
||||
result = {}
|
||||
resp = {}
|
||||
config_diff = []
|
||||
banner_diff = {}
|
||||
|
||||
replace = module.params['replace']
|
||||
rollback_id = module.params['rollback']
|
||||
commit_comment = module.params['commit_comment']
|
||||
multiline_delimiter = module.params['multiline_delimiter']
|
||||
diff_replace = module.params['diff_replace']
|
||||
|
@ -337,14 +336,17 @@ def main():
|
|||
else:
|
||||
flags = []
|
||||
|
||||
candidate = to_text(module.params['config'])
|
||||
candidate = module.params['config']
|
||||
candidate = to_text(candidate, errors='surrogate_then_replace') if candidate else None
|
||||
running = connection.get_config(flags=flags)
|
||||
rollback_id = module.params['rollback']
|
||||
|
||||
if module.params['backup']:
|
||||
result['__backup__'] = running
|
||||
|
||||
if candidate or rollback_id:
|
||||
try:
|
||||
result.update(run(module, capabilities, connection, candidate, running))
|
||||
result.update(run(module, capabilities, connection, candidate, running, rollback_id))
|
||||
except Exception as exc:
|
||||
module.fail_json(msg=to_text(exc))
|
||||
|
||||
|
|
Loading…
Reference in a new issue