summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/module_utils/network/vyos/facts/firewall_global/firewall_global.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/module_utils/network/vyos/facts/firewall_global/firewall_global.py b/plugins/module_utils/network/vyos/facts/firewall_global/firewall_global.py
index 3f4da3ea..97386e99 100644
--- a/plugins/module_utils/network/vyos/facts/firewall_global/firewall_global.py
+++ b/plugins/module_utils/network/vyos/facts/firewall_global/firewall_global.py
@@ -111,7 +111,7 @@ class Firewall_globalFacts(object):
rr_lst = []
v6_attr = findall(
- r"^set firewall (?:ipv6-src-route|ipv6-receive-redirects) (\S+)",
+ r"^set firewall (?:global-options )(?:ipv6-src-route|ipv6-receive-redirects) (\S+)",
conf,
M,
)
@@ -121,7 +121,7 @@ class Firewall_globalFacts(object):
rr_lst.append(obj)
v4_attr = findall(
- r"^set firewall (?:ip-src-route|receive-redirects|send-redirects) (\S+)",
+ r"^set firewall (?:global-options )(?:ip-src-route|receive-redirects|send-redirects) (\S+)",
conf,
M,
)