Improve YAML examples - windows/win_acl_inheritance.py (#19405)

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

View file

@ -57,27 +57,25 @@ options:
author: Hans-Joachim Kliemeck (@h0nIg)
'''
EXAMPLES = '''
# Playbook example
---
EXAMPLES = r'''
- name: Disable inherited ACE's
win_acl_inheritance:
path: 'C:\\apache\\'
path: C:\apache
state: absent
- name: Disable and copy inherited ACE's
win_acl_inheritance:
path: 'C:\\apache\\'
path: C:\apache
state: absent
reorganize: yes
reorganize: True
- name: Enable and remove dedicated ACE's
win_acl_inheritance:
path: 'C:\\apache\\'
path: C:\apache
state: present
reorganize: yes
reorganize: True
'''
RETURN = '''
'''
'''