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.
pull/32730/head
Ganesh Nalawade 7 years ago committed by GitHub
parent 437babbd07
commit 1b26cce57e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save