Remove duplicate documentation fields

pull/18777/head
Toshio Kuratomi 9 years ago committed by Matt Clay
parent ceba43e701
commit f6aa1ff9a4

@ -29,7 +29,6 @@ description:
- If there is no AKI or ARI associated with an image, these will be C(null). - If there is no AKI or ARI associated with an image, these will be C(null).
- Only supports images from cloud-images.ubuntu.com - Only supports images from cloud-images.ubuntu.com
- 'Example output: C({"ami": "ami-69f5a900", "changed": false, "aki": "aki-88aa75e1", "tag": "release", "ari": null, "serial": "20131024"})' - 'Example output: C({"ami": "ami-69f5a900", "changed": false, "aki": "aki-88aa75e1", "tag": "release", "ari": null, "serial": "20131024"})'
version_added: "1.6"
options: options:
distro: distro:
description: Linux distribution (e.g., C(ubuntu)) description: Linux distribution (e.g., C(ubuntu))

@ -162,8 +162,7 @@ options:
required: false required: false
default: 300 default: 300
version_added: "2.1" version_added: "2.1"
author: "Bruce Pennypacker (@bpennypacker)" author:
author:
- "Bruce Pennypacker (@bpennypacker)" - "Bruce Pennypacker (@bpennypacker)"
- "Mike Buzzetti <mike.buzzetti@gmail.com>" - "Mike Buzzetti <mike.buzzetti@gmail.com>"
extends_documentation_fragment: aws extends_documentation_fragment: aws

@ -76,7 +76,6 @@ options:
description: description:
- if command warnings are on in ansible.cfg, do not warn about this particular line if set to no/false. - if command warnings are on in ansible.cfg, do not warn about this particular line if set to no/false.
required: false required: false
default: True
notes: notes:
- If you want to run a command through the shell (say you are using C(<), - If you want to run a command through the shell (say you are using C(<),
C(>), C(|), etc), you actually want the M(shell) module instead. The C(>), C(|), etc), you actually want the M(shell) module instead. The

@ -69,11 +69,6 @@ options:
- Encoding of the database - Encoding of the database
required: false required: false
default: null default: null
encoding:
description:
- Encoding of the database
required: false
default: null
lc_collate: lc_collate:
description: description:
- Collation order (LC_COLLATE) to use in the database. Must match collation order of template database unless C(template0) is used as template. - Collation order (LC_COLLATE) to use in the database. Must match collation order of template database unless C(template0) is used as template.

@ -22,8 +22,6 @@ version_added: "1.4"
short_description: Sets and retrieves file ACL information. short_description: Sets and retrieves file ACL information.
description: description:
- Sets and retrieves file ACL information. - Sets and retrieves file ACL information.
notes:
- As of Ansible 2.0, this module only supports Linux distributions.
options: options:
name: name:
required: true required: true
@ -94,6 +92,7 @@ author:
- "Jérémie Astori (@astorije)" - "Jérémie Astori (@astorije)"
notes: notes:
- The "acl" module requires that acls are enabled on the target filesystem and that the setfacl and getfacl binaries are installed. - The "acl" module requires that acls are enabled on the target filesystem and that the setfacl and getfacl binaries are installed.
- As of Ansible 2.0, this module only supports Linux distributions.
''' '''
EXAMPLES = ''' EXAMPLES = '''

@ -26,7 +26,7 @@ DOCUMENTATION = '''
module: authorized_key module: authorized_key
short_description: Adds or removes an SSH authorized key short_description: Adds or removes an SSH authorized key
description: description:
- Adds or removes an SSH authorized key for a user from a remote host. - "Adds or removes SSH authorized keys for particular user accounts"
version_added: "0.5" version_added: "0.5"
options: options:
user: user:
@ -89,8 +89,6 @@ options:
default: "yes" default: "yes"
choices: ["yes", "no"] choices: ["yes", "no"]
version_added: "2.1" version_added: "2.1"
description:
- "Adds or removes authorized keys for particular user accounts"
author: "Ansible Core Team" author: "Ansible Core Team"
''' '''

@ -28,7 +28,9 @@ version_added: "1.7"
short_description: Fetches a file from a given URL short_description: Fetches a file from a given URL
description: description:
- Fetches a file from a URL and saves to locally - Fetches a file from a URL and saves to locally
author: "Paul Durivage (@angstwad)" author:
- "Paul Durivage (@angstwad)"
- "Takeshi Kuramochi (tksarah)"
options: options:
url: url:
description: description:
@ -80,9 +82,6 @@ options:
- Proxy authentication password - Proxy authentication password
version_added: "2.0" version_added: "2.0"
required: false required: false
author:
- "Paul Durivage (@angstwad)"
- "Takeshi Kuramochi (tksarah)"
''' '''
EXAMPLES = ''' EXAMPLES = '''

@ -103,11 +103,8 @@ options:
validate: validate:
required: false required: false
description: description:
- validation to run before copying into place. - Validation to run before copying into place. Use %s in the command to indicate the current file to validate.
Use %s in the command to indicate the current file to validate. - The command is passed securely so shell features like expansion and pipes won't work.
The command is passed securely so shell features like
expansion and pipes won't work.
required: false
default: None default: None
encoding: encoding:
required: false required: false

Loading…
Cancel
Save