Merge pull request #2683 from gerva/a10_server_configuration_write

when write_config is no, we should not try to write any configuration…
This commit is contained in:
Peter Sprygada 2016-08-26 08:37:03 -04:00 committed by GitHub
commit 628ee6864d

View file

@ -257,8 +257,8 @@ def main():
else:
result = dict(msg="the server was not present")
# if the config has changed, or we want to force a save, save the config unless otherwise requested
if changed or write_config:
# if the config has changed, save the config unless otherwise requested
if changed and write_config:
write_result = axapi_call(module, session_url + '&method=system.action.write_memory')
if axapi_failure(write_result):
module.fail_json(msg="failed to save the configuration: %s" % write_result['response']['err']['msg'])