mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Improve YAML examples - windows/win_owner.py (#19406)
This commit is contained in:
parent
12205598c3
commit
beb6ed08cd
1 changed files with 6 additions and 8 deletions
|
@ -52,22 +52,20 @@ options:
|
|||
author: Hans-Joachim Kliemeck (@h0nIg)
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
# Playbook example
|
||||
---
|
||||
EXAMPLES = r'''
|
||||
- name: Change owner of Path
|
||||
win_owner:
|
||||
path: 'C:\\apache\\'
|
||||
path: C:\apache
|
||||
user: apache
|
||||
recurse: yes
|
||||
recurse: True
|
||||
|
||||
- name: Set the owner of root directory
|
||||
win_owner:
|
||||
path: 'C:\\apache\\'
|
||||
path: C:\apache
|
||||
user: SYSTEM
|
||||
recurse: no
|
||||
recurse: False
|
||||
'''
|
||||
|
||||
RETURN = '''
|
||||
|
||||
'''
|
||||
'''
|
||||
|
|
Loading…
Reference in a new issue