From 12512f731984ecb5bacb750e555dc4ef697c2b12 Mon Sep 17 00:00:00 2001 From: yanzhangi <51999930+yanzhangi@users.noreply.github.com> Date: Wed, 18 Sep 2019 10:52:11 +0800 Subject: [PATCH] Update ce_vxlan_arp to fix bugs (#61995) * Update ce_vxlan_arp to fix bugs * Update ce_vxlan_arp to fix bugs --- lib/ansible/modules/network/cloudengine/ce_vxlan_arp.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ansible/modules/network/cloudengine/ce_vxlan_arp.py b/lib/ansible/modules/network/cloudengine/ce_vxlan_arp.py index 1cd6c91c9a4..72d1d985052 100644 --- a/lib/ansible/modules/network/cloudengine/ce_vxlan_arp.py +++ b/lib/ansible/modules/network/cloudengine/ce_vxlan_arp.py @@ -286,12 +286,12 @@ class VxlanArp(object): """get current configuration""" flags = list() - exp = "| ignore-case section include evn bgp|host collect protocol bgp" + exp = r"| ignore-case section include evn bgp|host collect protocol bgp" if self.vbdif_name: - exp += "|^interface %s$" % self.vbdif_name + exp += r"|^#\s+interface %s\s+" % self.vbdif_name.lower().capitalize().replace(" ", "") if self.bridge_domain_id: - exp += "|^bridge-domain %s$" % self.bridge_domain_id + exp += r"|^#\s+bridge-domain %s\s+" % self.bridge_domain_id flags.append(exp) cfg_str = self.get_config(flags)