mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-06 18:53:12 +00:00
Improve YAML examples - windows/win_acl_inheritance.py (#19405)
This commit is contained in:
committed by
Matt Davis
parent
5a87f26658
commit
12205598c3
@@ -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 = '''
|
||||
|
||||
'''
|
||||
'''
|
||||
|
||||
Reference in New Issue
Block a user