Corrects typos in net_get/put module docs (#41991)

This commit is contained in:
John R Barker 2018-06-27 10:38:40 -07:00 committed by GitHub
commit ed3933b67a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 17 deletions

View file

@ -18,9 +18,9 @@ DOCUMENTATION = """
module: net_put
version_added: "2.6"
author: "Deepak Agrawal (@dagrawal)"
short_description: Copy files from Ansibe controller to a network device
short_description: Copy a file from Ansible Controller to a network device
description:
- This module provides functionlity to copy file from Ansible controller to
- This module provides functionality to copy file from Ansible controller to
network devices.
options:
src:
@ -44,9 +44,9 @@ options:
required: no
mode:
description:
- Set the file transfer mode. If mode is set to 'template' then src
file will go through jinja2 template engine to replace any vars if
present in src file. If mode is set to 'binary' then file will be
- Set the file transfer mode. If mode is set to I(template) then I(src)
file will go through Jinja2 template engine to replace any vars if
present in the src file. If mode is set to I(binary) then file will be
copied as it is to destination device.
default: binary
choices: ['binary', 'template']
@ -57,10 +57,10 @@ requirements:
notes:
- Some devices need specific configurations to be enabled before scp can work
These configuration should be pre-configued before using this module
These configuration should be pre-configured before using this module
e.g ios - C(ip scp server enable).
- User privileage to do scp on network device should be pre-configured
e.g. ios - need user privileage 15 by default for allowing scp.
- User privilege to do scp on network device should be pre-configured
e.g. ios - need user privilege 15 by default for allowing scp.
- Default destination of source file.
"""