Improve YAML examples - windows/win_acl_inheritance.py (#19405)
This commit is contained in:
parent
5a87f26658
commit
12205598c3
1 changed files with 7 additions and 9 deletions
|
@ -57,25 +57,23 @@ 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 = '''
|
||||
|
|
Loading…
Reference in a new issue