mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-02 14:40:19 -07:00
Native YAML - files (#3608)
This commit is contained in:
parent
47442b7c22
commit
d344d7863a
2 changed files with 17 additions and 7 deletions
|
@ -52,11 +52,15 @@ options:
|
|||
'''
|
||||
|
||||
EXAMPLES = """
|
||||
- name: create temporary build directory
|
||||
tempfile: state=directory suffix=build
|
||||
- name: create temporary build directory
|
||||
tempfile:
|
||||
state: directory
|
||||
suffix: build
|
||||
|
||||
- name: create temporary file
|
||||
tempfile: state=file suffix=temp
|
||||
- name: create temporary file
|
||||
tempfile:
|
||||
state: file
|
||||
suffix: temp
|
||||
"""
|
||||
|
||||
RETURN = '''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue