rename the argument default to defaults

The argument_spec incorrectly had the argument default and it should have
been defaults.  This corrects the problem.
pull/18777/head
Peter Sprygada 8 years ago committed by Matt Clay
parent 42d5d7b21b
commit 4327e67a7e

@ -142,7 +142,7 @@ options:
required: false required: false
default: null default: null
version_added: "2.2" version_added: "2.2"
default: defaults:
description: description:
- This argument specifies whether or not to collect all defaults - This argument specifies whether or not to collect all defaults
when getting the remote device running config. When enabled, when getting the remote device running config. When enabled,
@ -229,7 +229,7 @@ def check_args(module, warnings):
def get_config(module, result): def get_config(module, result):
contents = module.params['config'] contents = module.params['config']
if not contents: if not contents:
defaults = module.params['default'] defaults = module.params['defaults']
contents = module.config.get_config(include_defaults=defaults) contents = module.config.get_config(include_defaults=defaults)
return NetworkConfig(indent=1, contents=contents) return NetworkConfig(indent=1, contents=contents)
@ -320,7 +320,7 @@ def main():
force=dict(default=False, type='bool'), force=dict(default=False, type='bool'),
config=dict(), config=dict(),
default=dict(type='bool', default=False), defaults=dict(type='bool', default=False),
backup=dict(type='bool', default=False), backup=dict(type='bool', default=False),
save=dict(default=False, type='bool'), save=dict(default=False, type='bool'),

Loading…
Cancel
Save