mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-03-31 15:53:09 +00:00
Fix platform agnostic failure for eos modules (#32712)
Platform agnostic action plugin (net_base) calls `get_provider_argspec()` to fetch the provider specific details for each platform. This fix adds the function in eos module_utils and retuns a dict of provider spec.
This commit is contained in:
@@ -77,8 +77,8 @@ eos_top_spec = {
|
||||
eos_argument_spec.update(eos_top_spec)
|
||||
|
||||
|
||||
def get_argspec():
|
||||
return eos_argument_spec
|
||||
def get_provider_argspec():
|
||||
return eos_provider_spec
|
||||
|
||||
|
||||
def check_args(module, warnings):
|
||||
|
||||
Reference in New Issue
Block a user