mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Proper author info for all remaining modules
This commit is contained in:
committed by
Matt Clay
parent
18ca7aee07
commit
eb881d7d5d
@@ -79,7 +79,7 @@ options:
|
||||
description:
|
||||
- DEPRECATED. The acl to set or remove. This must always be quoted in the form of '<etype>:<qualifier>:<perms>'. The qualifier may be empty for some types, but the type and perms are always requried. '-' can be used as placeholder when you do not care about permissions. This is now superseded by entity, type and permissions fields.
|
||||
|
||||
author: Brian Coca
|
||||
author: "Brian Coca (@bcoca)"
|
||||
notes:
|
||||
- The "acl" module requires that acls are enabled on the target filesystem and that the setfacl and getfacl binaries are installed.
|
||||
'''
|
||||
|
||||
@@ -79,7 +79,7 @@ options:
|
||||
U(http://docs.python.org/2/library/re.html).
|
||||
required: false
|
||||
default: null
|
||||
author: Stephen Fromm
|
||||
author: "Stephen Fromm (@sfromm)"
|
||||
extends_documentation_fragment: files
|
||||
'''
|
||||
|
||||
|
||||
@@ -86,7 +86,9 @@ options:
|
||||
required: false
|
||||
version_added: "1.5"
|
||||
extends_documentation_fragment: files
|
||||
author: Michael DeHaan
|
||||
author:
|
||||
- "Ansible Core Team"
|
||||
- "Michael DeHaan"
|
||||
notes:
|
||||
- The "copy" module recursively copy facility does not scale to lots (>hundreds) of files.
|
||||
For alternative, see synchronize module, which is a wrapper around rsync.
|
||||
|
||||
@@ -50,7 +50,9 @@ options:
|
||||
will use the basename of the source file, similar to the copy module.
|
||||
Obviously this is only handy if the filenames are unique.
|
||||
requirements: []
|
||||
author: Michael DeHaan
|
||||
author:
|
||||
- "Ansible Core Team"
|
||||
- "Michael DeHaan"
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
|
||||
@@ -41,7 +41,9 @@ description:
|
||||
notes:
|
||||
- See also M(copy), M(template), M(assemble)
|
||||
requirements: [ ]
|
||||
author: Michael DeHaan
|
||||
author:
|
||||
- "Ansible Core Team"
|
||||
- "Michael DeHaan"
|
||||
options:
|
||||
path:
|
||||
description:
|
||||
|
||||
@@ -73,7 +73,7 @@ notes:
|
||||
Either use M(template) to create a base INI file with a C([default]) section, or use
|
||||
M(lineinfile) to add the missing line.
|
||||
requirements: [ ConfigParser ]
|
||||
author: Jan-Piet Mens
|
||||
author: "Jan-Piet Mens (@jpmens)"
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
|
||||
@@ -27,7 +27,9 @@ import tempfile
|
||||
DOCUMENTATION = """
|
||||
---
|
||||
module: lineinfile
|
||||
author: Daniel Hokka Zakrisson, Ahti Kitsik
|
||||
author:
|
||||
- "Daniel Hokka Zakrissoni (@dhozac)"
|
||||
- "Ahti Kitsik (@ahtik)"
|
||||
extends_documentation_fragment: files
|
||||
short_description: Ensure a particular line is in a file, or replace an
|
||||
existing line using a back-referenced regular expression.
|
||||
|
||||
@@ -25,7 +25,7 @@ import tempfile
|
||||
DOCUMENTATION = """
|
||||
---
|
||||
module: replace
|
||||
author: Evan Kaufman
|
||||
author: "Evan Kaufman (@EvanK)"
|
||||
extends_documentation_fragment: files
|
||||
short_description: Replace all instances of a particular string in a
|
||||
file using a back-referenced regular expression.
|
||||
|
||||
@@ -47,7 +47,7 @@ options:
|
||||
default: yes
|
||||
aliases: []
|
||||
version_added: "1.8"
|
||||
author: Bruce Pennypacker
|
||||
author: "Bruce Pennypacker (@bpennypacker)"
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
|
||||
@@ -161,9 +161,9 @@ notes:
|
||||
- Expect that dest=~/x will be ~<remote_user>/x even if using sudo.
|
||||
- To exclude files and directories from being synchronized, you may add
|
||||
C(.rsync-filter) files to the source directory.
|
||||
|
||||
|
||||
author: Timothy Appnel
|
||||
|
||||
|
||||
author: "Timothy Appnel (@tima)"
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
|
||||
@@ -50,7 +50,9 @@ options:
|
||||
notes:
|
||||
- "Since Ansible version 0.9, templates are loaded with C(trim_blocks=True)."
|
||||
requirements: []
|
||||
author: Michael DeHaan
|
||||
author:
|
||||
- Ansible Core Team
|
||||
- Michael DeHaan
|
||||
extends_documentation_fragment: files
|
||||
'''
|
||||
|
||||
|
||||
@@ -58,7 +58,7 @@ options:
|
||||
choices: [ "yes", "no" ]
|
||||
default: "no"
|
||||
version_added: "2.0"
|
||||
author: Dylan Martin
|
||||
author: "Dylan Martin (@pileofrogs)"
|
||||
todo:
|
||||
- detect changed/unchanged for .zip files
|
||||
- handle common unarchive args, like preserve owner/timestamp etc...
|
||||
|
||||
@@ -58,7 +58,7 @@ options:
|
||||
- if yes, dereferences symlinks and sets/gets attributes on symlink target,
|
||||
otherwise acts on symlink itself.
|
||||
|
||||
author: Brian Coca
|
||||
author: "Brian Coca (@bcoca)"
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
|
||||
Reference in New Issue
Block a user