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:
parent
aca8a3b4d7
commit
8f4aab6d28
1 changed files with 2 additions and 2 deletions
|
@ -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'''
|
||||
|
|
Loading…
Reference in a new issue