update acl interface. (#57905)
* update acl interface. * update ce_interface * update * add a changelog fragment. * update
This commit is contained in:
parent
b93411a5b2
commit
da72644317
2 changed files with 5 additions and 3 deletions
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- ce_acl_interface - Strict regularity can't find anything.
|
|
@ -169,7 +169,7 @@ class AclInterface(object):
|
|||
msg='Error: The len of acl_name is out of [1 - 32].')
|
||||
|
||||
if self.interface:
|
||||
cmd = "display current-configuration | ignore-case section include ^interface %s$" % self.interface
|
||||
cmd = "display current-configuration | ignore-case section include interface %s" % self.interface
|
||||
rc, out, err = exec_command(self.module, cmd)
|
||||
if rc != 0:
|
||||
self.module.fail_json(msg=err)
|
||||
|
@ -199,7 +199,7 @@ class AclInterface(object):
|
|||
def get_existing(self):
|
||||
""" Get existing config """
|
||||
|
||||
cmd = "display current-configuration | ignore-case section include ^interface %s$ | include traffic-filter" % self.interface
|
||||
cmd = "display current-configuration | ignore-case section include interface %s | include traffic-filter" % self.interface
|
||||
rc, out, err = exec_command(self.module, cmd)
|
||||
if rc != 0:
|
||||
self.module.fail_json(msg=err)
|
||||
|
@ -217,7 +217,7 @@ class AclInterface(object):
|
|||
def get_end_state(self):
|
||||
""" Get config end state """
|
||||
|
||||
cmd = "display current-configuration | ignore-case section include ^interface %s$ | include traffic-filter" % self.interface
|
||||
cmd = "display current-configuration | ignore-case section include interface %s | include traffic-filter" % self.interface
|
||||
rc, out, err = exec_command(self.module, cmd)
|
||||
if rc != 0:
|
||||
self.module.fail_json(msg=err)
|
||||
|
|
Loading…
Reference in a new issue