Improve YAML examples - windows/win_owner.py (#19406)

This commit is contained in:
Fabio Alessandro Locati 2016-12-16 00:00:28 +01:00 committed by Matt Davis
parent 12205598c3
commit beb6ed08cd

View file

@ -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 = '''
'''
'''