summaryrefslogtreecommitdiff
path: root/network/openswitch/ops_config.py
diff options
context:
space:
mode:
authorJohn Barker <john@johnrbarker.com>2016-09-14 12:06:18 +0100
committerJohn Barker <john@johnrbarker.com>2016-09-14 12:06:18 +0100
commit9c42d723753aa0bfe93a92ccb616eb12932718e3 (patch)
treeea4283441fdebfadbe6eced69e1cab99a64061b4 /network/openswitch/ops_config.py
parenta7dee0d08d46206f2161978a529a6c7c14631df8 (diff)
downloadansible-modules-core-9c42d723753aa0bfe93a92ccb616eb12932718e3.tar.gz
Docs improvements to _config
Diffstat (limited to 'network/openswitch/ops_config.py')
-rw-r--r--network/openswitch/ops_config.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/network/openswitch/ops_config.py b/network/openswitch/ops_config.py
index a83bda2f..8c65144b 100644
--- a/network/openswitch/ops_config.py
+++ b/network/openswitch/ops_config.py
@@ -52,7 +52,7 @@ options:
to load into the remote system. The path can either be a full
system path to the configuration file if the value starts with /
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.
required: false
default: null
@@ -69,7 +69,7 @@ options:
after:
description:
- 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
executed after the command set.
required: false
@@ -80,8 +80,10 @@ options:
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(strict), command lines are matched with respect
- to position. Finally if match is set to I(exact), command lines
- must be an equal match.
+ to position. If match is set to I(exact), command lines
+ must be an equal match. Finally, if match is set to I(none), the
+ module will not attempt to compare the source configuration with
+ the running configuration on the remote device.
required: false
default: line
choices: ['line', 'strict', 'exact', 'none']
@@ -103,7 +105,7 @@ options:
cause the module to push the contents of I(src) into the device
without first checking if already configured.
- Note this argument should be considered deprecated. To achieve
- the equivalent, 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.
required: false
default: false
@@ -304,4 +306,3 @@ def main():
if __name__ == '__main__':
main()
-