mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02: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:
parent
437babbd07
commit
1b26cce57e
1 changed files with 2 additions and 2 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue