[Backport/2.9/61843]Update ce_snmp_traps to fix bugs (#62507)

* Update ce_snmp_traps to fix bugs

(cherry picked from commit fd11b82272)

* update ce_snmp_traps to fix bugs
pull/62524/head
yanzhangi 5 years ago committed by Toshio Kuratomi
parent 2549af3f23
commit f45db211e7

@ -0,0 +1,2 @@
bugfixes:
- ce_snmp_traps - update to fix some bugs - Contrast before and after adding configuration. (https://github.com/ansible/ansible/pull/61843)

@ -127,7 +127,7 @@ updates:
from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils.network.cloudengine.ce import get_config, load_config, ce_argument_spec, run_commands
from ansible.module_utils.network.cloudengine.ce import load_config, ce_argument_spec, run_commands
from ansible.module_utils.connection import exec_command
@ -308,6 +308,9 @@ class SnmpTraps(object):
else:
del self.end_state["snmp-agent trap"]
del self.end_state["undo snmp-agent trap"]
if self.end_state == self.existing:
self.changed = False
self.updates_cmd = list()
def cli_load_config(self, commands):
""" Load configure through cli """

Loading…
Cancel
Save