diff options
Diffstat (limited to 'plugins')
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": | 
