summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authoransible-zuul[bot] <48994755+ansible-zuul[bot]@users.noreply.github.com>2019-09-18 21:05:17 +0000
committerGitHub <noreply@github.com>2019-09-18 21:05:17 +0000
commit75582948949168ca2eaa04413db09298c52ada95 (patch)
treeb9123d8b0e1b2948cd9538568b8acb27b5ed9fdd /plugins
parent1f9edfd94ba9a558cf8e7438258a7a0c342c1425 (diff)
parent447598ada0da54d91cb563a679cfe261158bd7cd (diff)
downloadvyos.vyos-75582948949168ca2eaa04413db09298c52ada95.tar.gz
vyos.vyos-75582948949168ca2eaa04413db09298c52ada95.zip
Merge pull request #35 from CaptTrews/ansible/collections-sync-master
Updated from network content collector Reviewed-by: https://github.com/apps/ansible-zuul
Diffstat (limited to 'plugins')
-rw-r--r--plugins/module_utils/network/vyos/config/lag_interfaces/lag_interfaces.py4
-rw-r--r--plugins/module_utils/network/vyos/config/lldp_global/lldp_global.py4
-rw-r--r--plugins/module_utils/network/vyos/config/lldp_interfaces/lldp_interfaces.py4
3 files changed, 12 insertions, 0 deletions
diff --git a/plugins/module_utils/network/vyos/config/lag_interfaces/lag_interfaces.py b/plugins/module_utils/network/vyos/config/lag_interfaces/lag_interfaces.py
index e7f788a0..af49f42e 100644
--- a/plugins/module_utils/network/vyos/config/lag_interfaces/lag_interfaces.py
+++ b/plugins/module_utils/network/vyos/config/lag_interfaces/lag_interfaces.py
@@ -118,6 +118,10 @@ class Lag_interfaces(ConfigBase):
"""
commands = []
state = self._module.params["state"]
+ if state in ("merged", "replaced", "overridden") and not want:
+ self._module.fail_json(
+ msg="config is required for state {0}".format(state)
+ )
if state == "overridden":
commands.extend(self._state_overridden(want, have))
elif state == "deleted":
diff --git a/plugins/module_utils/network/vyos/config/lldp_global/lldp_global.py b/plugins/module_utils/network/vyos/config/lldp_global/lldp_global.py
index 54606fab..85708740 100644
--- a/plugins/module_utils/network/vyos/config/lldp_global/lldp_global.py
+++ b/plugins/module_utils/network/vyos/config/lldp_global/lldp_global.py
@@ -104,6 +104,10 @@ class Lldp_global(ConfigBase):
"""
commands = []
state = self._module.params["state"]
+ if state in ("merged", "replaced") and not want:
+ self._module.fail_json(
+ msg="config is required for state {0}".format(state)
+ )
if state == "deleted":
commands.extend(self._state_deleted(want=None, have=have))
elif state == "merged":
diff --git a/plugins/module_utils/network/vyos/config/lldp_interfaces/lldp_interfaces.py b/plugins/module_utils/network/vyos/config/lldp_interfaces/lldp_interfaces.py
index a22c27e5..6b76296c 100644
--- a/plugins/module_utils/network/vyos/config/lldp_interfaces/lldp_interfaces.py
+++ b/plugins/module_utils/network/vyos/config/lldp_interfaces/lldp_interfaces.py
@@ -115,6 +115,10 @@ class Lldp_interfaces(ConfigBase):
"""
commands = []
state = self._module.params["state"]
+ if state in ("merged", "replaced", "overridden") and not want:
+ self._module.fail_json(
+ msg="config is required for state {0}".format(state)
+ )
if state == "overridden":
commands.extend(self._state_overridden(want=want, have=have))
elif state == "deleted":