|
|
@ -53,7 +53,7 @@ options:
|
|
|
|
to load into the remote system. The path can either be a full
|
|
|
|
to load into the remote system. The path can either be a full
|
|
|
|
system path to the configuration file if the value starts with /
|
|
|
|
system path to the configuration file if the value starts with /
|
|
|
|
or relative to the root of the implemented role or playbook.
|
|
|
|
or relative to the root of the implemented role or playbook.
|
|
|
|
This arugment is mutually exclusive with the I(lines) and
|
|
|
|
This argument is mutually exclusive with the I(lines) and
|
|
|
|
I(parents) arguments.
|
|
|
|
I(parents) arguments.
|
|
|
|
required: false
|
|
|
|
required: false
|
|
|
|
default: null
|
|
|
|
default: null
|
|
|
@ -70,7 +70,7 @@ options:
|
|
|
|
after:
|
|
|
|
after:
|
|
|
|
description:
|
|
|
|
description:
|
|
|
|
- The ordered set of commands to append to the end of the command
|
|
|
|
- The ordered set of commands to append to the end of the command
|
|
|
|
stack if a changed needs to be made. Just like with I(before) this
|
|
|
|
stack if a change needs to be made. Just like with I(before) this
|
|
|
|
allows the playbook designer to append a set of commands to be
|
|
|
|
allows the playbook designer to append a set of commands to be
|
|
|
|
executed after the command set.
|
|
|
|
executed after the command set.
|
|
|
|
required: false
|
|
|
|
required: false
|
|
|
@ -81,11 +81,10 @@ options:
|
|
|
|
the set of commands against the current device config. If
|
|
|
|
the set of commands against the current device config. If
|
|
|
|
match is set to I(line), commands are matched line by line. If
|
|
|
|
match is set to I(line), commands are matched line by line. If
|
|
|
|
match is set to I(strict), command lines are matched with respect
|
|
|
|
match is set to I(strict), command lines are matched with respect
|
|
|
|
to position. Finally if match is set to I(exact), command lines
|
|
|
|
to position. If match is set to I(exact), command lines
|
|
|
|
must be an equal match.
|
|
|
|
must be an equal match. Finally, if match is set to I(none), the
|
|
|
|
- Version 2.2 added a new choice I(none). When match is set to
|
|
|
|
module will not attempt to compare the source configuration with
|
|
|
|
none, the configure is loaded into the remote device without
|
|
|
|
the running configuration on the remote device.
|
|
|
|
consulting the configuration.
|
|
|
|
|
|
|
|
required: false
|
|
|
|
required: false
|
|
|
|
default: line
|
|
|
|
default: line
|
|
|
|
choices: ['line', 'strict', 'exact', 'none']
|
|
|
|
choices: ['line', 'strict', 'exact', 'none']
|
|
|
@ -107,7 +106,7 @@ options:
|
|
|
|
cause the module to push the contents of I(src) into the device
|
|
|
|
cause the module to push the contents of I(src) into the device
|
|
|
|
without first checking if already configured.
|
|
|
|
without first checking if already configured.
|
|
|
|
- Note this argument should be considered deprecated. To achieve
|
|
|
|
- Note this argument should be considered deprecated. To achieve
|
|
|
|
the equivalient, set the match argument to none. This argument
|
|
|
|
the equivalent, set the C(match=none) which is idempotent. This argument
|
|
|
|
will be removed in a future release.
|
|
|
|
will be removed in a future release.
|
|
|
|
required: false
|
|
|
|
required: false
|
|
|
|
default: false
|
|
|
|
default: false
|
|
|
@ -146,7 +145,7 @@ options:
|
|
|
|
version_added: "2.2"
|
|
|
|
version_added: "2.2"
|
|
|
|
save:
|
|
|
|
save:
|
|
|
|
description:
|
|
|
|
description:
|
|
|
|
- The I(save) argument will instruct the module to save the
|
|
|
|
- The C(save) argument instructs the module to save the
|
|
|
|
running-config to startup-config. This operation is performed
|
|
|
|
running-config to startup-config. This operation is performed
|
|
|
|
after any changes are made to the current running config. If
|
|
|
|
after any changes are made to the current running config. If
|
|
|
|
no changes are made, the configuration is still saved to the
|
|
|
|
no changes are made, the configuration is still saved to the
|
|
|
@ -200,7 +199,7 @@ vars:
|
|
|
|
RETURN = """
|
|
|
|
RETURN = """
|
|
|
|
updates:
|
|
|
|
updates:
|
|
|
|
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: when list is specified
|
|
|
|
returned: Only when C(lines) is specified.
|
|
|
|
type: list
|
|
|
|
type: list
|
|
|
|
sample: ['...', '...']
|
|
|
|
sample: ['...', '...']
|
|
|
|
backup_path:
|
|
|
|
backup_path:
|
|
|
@ -331,5 +330,6 @@ def main():
|
|
|
|
|
|
|
|
|
|
|
|
module.exit_json(**result)
|
|
|
|
module.exit_json(**result)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|
|
|
|
main()
|
|
|
|