Update ce_snmp_traps to fix bugs (#61843)
This commit is contained in:
parent
5f35916b22
commit
e1ca38e53a
1 changed files with 4 additions and 1 deletions
|
@ -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…
Reference in a new issue