diff options
author | René Moser <mail@renemoser.net> | 2016-11-14 09:32:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-14 09:32:42 +0100 |
commit | 8c762d7b02f0b904da7dade882e0588fb5e97f13 (patch) | |
tree | f75384ee4920efb525e7cd3d0b760e28123fa471 /files | |
parent | 1f0d62b36d1e8d905503772d1e5a75926af033de (diff) | |
download | ansible-modules-core-8c762d7b02f0b904da7dade882e0588fb5e97f13.tar.gz |
stat: doc: add version for new returns (#5594)
Diffstat (limited to 'files')
-rw-r--r-- | files/stat.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/files/stat.py b/files/stat.py index c07cf699..33a2fc3a 100644 --- a/files/stat.py +++ b/files/stat.py @@ -303,17 +303,17 @@ stat: type: string sample: us-ascii readable: - description: Tells you if the invoking user has the right to read the path + description: Tells you if the invoking user has the right to read the path, added in version 2.2 returned: success, path exists and user can read the path type: boolean sample: False writeable: - description: Tells you if the invoking user has the right to write the path + description: Tells you if the invoking user has the right to write the path, added in version 2.2 returned: success, path exists and user can write the path type: boolean sample: False executable: - description: Tells you if the invoking user has the execute the path + description: Tells you if the invoking user has the execute the path, added in version 2.2 returned: success, path exists and user can execute the path type: boolean sample: False |