mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-26 16:36:29 +00:00
Improve YAML examples - windows/win_owner.py (#19406)
This commit is contained in:
committed by
Matt Davis
parent
12205598c3
commit
beb6ed08cd
@@ -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 = '''
|
||||
|
||||
'''
|
||||
'''
|
||||
|
||||
Reference in New Issue
Block a user