1
0
Fork 0
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:
Ganesh Nalawade 2017-11-09 11:33:57 +05:30 committed by GitHub
parent 437babbd07
commit 1b26cce57e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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):