From c8da9b012b2ac93f62b496110e0c557f9482c7dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Moser?= Date: Mon, 14 Nov 2016 09:32:42 +0100 Subject: [PATCH] stat: doc: add version for new returns (#5594) --- lib/ansible/modules/files/stat.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ansible/modules/files/stat.py b/lib/ansible/modules/files/stat.py index c07cf699d8..33a2fc3a67 100644 --- a/lib/ansible/modules/files/stat.py +++ b/lib/ansible/modules/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