1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Updated win_owner.py documentation to reflect recurse options (#31974)

Updated win_owner.py documentation to reflect recurse options 'yes' and 'no' instead of 'True' and 'False'
This commit is contained in:
George Davis 2017-10-20 16:15:31 +05:30 committed by Dag Wieers
parent aca8a3b4d7
commit 8f4aab6d28

View file

@ -36,13 +36,13 @@ EXAMPLES = r'''
win_owner:
path: C:\apache
user: apache
recurse: True
recurse: yes
- name: Set the owner of root directory
win_owner:
path: C:\apache
user: SYSTEM
recurse: False
recurse: no
'''
RETURN = r'''