Issue #49: Remaining fixes from diff on auto-migrated collection.

This commit is contained in:
Jeff Geerling
2020-03-20 15:42:13 -05:00
parent 78902af34a
commit 7aa071c98f
13 changed files with 18 additions and 40 deletions

View File

@@ -15,13 +15,15 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
DOCUMENTATION = '''
---
module: test_tempfile
version_added: "2.3"
short_description: Creates temporary files and directories
description:
- The C(test_tempfile) module creates temporary files and directories. C(mktemp) command takes different parameters on various systems, this module helps
to avoid troubles related to that. Files/directories created by module are accessible only by creator. In case you need to make them world-accessible
you need to use M(file) module.
- For Windows targets, use the M(win_tempfile) module instead.
options:
state:
description:
@@ -44,9 +46,11 @@ options:
- Suffix of file/directory name created by module.
type: str
default: ""
seealso:
- module: file
- module: win_tempfile
author:
- Krzysztof Magosa (@krzysztof-magosa)
'''