update nxos_template doc strings and return values
This updates the nxos_template doc string to unify the return values across all network modules. This change now returns stdout, stdout_lines and failed_conditionals
This commit is contained in:
parent
00d3e33dbf
commit
4873e8ab12
1 changed files with 9 additions and 6 deletions
|
@ -80,7 +80,6 @@ options:
|
||||||
"""
|
"""
|
||||||
|
|
||||||
EXAMPLES = """
|
EXAMPLES = """
|
||||||
|
|
||||||
- name: push a configuration onto the device
|
- name: push a configuration onto the device
|
||||||
nxos_template:
|
nxos_template:
|
||||||
src: config.j2
|
src: config.j2
|
||||||
|
@ -94,17 +93,20 @@ EXAMPLES = """
|
||||||
nxos_template:
|
nxos_template:
|
||||||
src: candidate_config.txt
|
src: candidate_config.txt
|
||||||
config: current_config.txt
|
config: current_config.txt
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
RETURN = """
|
RETURN = """
|
||||||
|
updates:
|
||||||
commands:
|
|
||||||
description: The set of commands that will be pushed to the remote device
|
description: The set of commands that will be pushed to the remote device
|
||||||
returned: always
|
returned: always
|
||||||
type: list
|
type: list
|
||||||
sample: [...]
|
sample: ['...', '...']
|
||||||
|
|
||||||
|
responses:
|
||||||
|
description: The set of responses from issuing the commands on the device
|
||||||
|
retured: when not check_mode
|
||||||
|
type: list
|
||||||
|
sample: ['...', '...']
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def compare(this, other):
|
def compare(this, other):
|
||||||
|
@ -184,9 +186,10 @@ def main():
|
||||||
if not module.check_mode:
|
if not module.check_mode:
|
||||||
commands = [str(c).strip() for c in commands]
|
commands = [str(c).strip() for c in commands]
|
||||||
response = module.configure(commands)
|
response = module.configure(commands)
|
||||||
|
result['responses'] = response
|
||||||
result['changed'] = True
|
result['changed'] = True
|
||||||
|
|
||||||
result['commands'] = commands
|
result['updates'] = commands
|
||||||
return module.exit_json(**result)
|
return module.exit_json(**result)
|
||||||
|
|
||||||
from ansible.module_utils.basic import *
|
from ansible.module_utils.basic import *
|
||||||
|
|
Loading…
Reference in a new issue