mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add RETURN documentation
This commit is contained in:
parent
409f67584e
commit
bab1f5c082
1 changed files with 21 additions and 0 deletions
|
@ -50,6 +50,27 @@ EXAMPLES = '''
|
|||
compression: bz2
|
||||
'''
|
||||
|
||||
RETURN = '''
|
||||
state:
|
||||
description: The current state of the archived file.
|
||||
type: string
|
||||
returned: always
|
||||
missing:
|
||||
description: Any files that were missing from the source.
|
||||
type: list
|
||||
returned: success
|
||||
archived:
|
||||
description: Any files that were compressed or added to the archive.
|
||||
type: list
|
||||
returned: success
|
||||
arcroot:
|
||||
description: The archive root.
|
||||
type: string
|
||||
expanded_paths:
|
||||
description: The list of matching paths from paths argument.
|
||||
type: list
|
||||
'''
|
||||
|
||||
import stat
|
||||
import os
|
||||
import errno
|
||||
|
|
Loading…
Reference in a new issue