From 447598ada0da54d91cb563a679cfe261158bd7cd Mon Sep 17 00:00:00 2001 From: CaptTrews Date: Wed, 18 Sep 2019 18:01:08 +0000 Subject: Updated from network content collector Signed-off-by: CaptTrews --- .../module_utils/network/vyos/config/lag_interfaces/lag_interfaces.py | 4 ++++ plugins/module_utils/network/vyos/config/lldp_global/lldp_global.py | 4 ++++ .../network/vyos/config/lldp_interfaces/lldp_interfaces.py | 4 ++++ 3 files changed, 12 insertions(+) (limited to 'plugins') 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": -- cgit v1.2.3