From 12205598c33b2e5e899aebb89df270420b42ddfb Mon Sep 17 00:00:00 2001 From: Fabio Alessandro Locati Date: Fri, 16 Dec 2016 00:00:03 +0100 Subject: [PATCH] Improve YAML examples - windows/win_acl_inheritance.py (#19405) --- .../modules/windows/win_acl_inheritance.py | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/lib/ansible/modules/windows/win_acl_inheritance.py b/lib/ansible/modules/windows/win_acl_inheritance.py index 549ce629335..1f791af34df 100644 --- a/lib/ansible/modules/windows/win_acl_inheritance.py +++ b/lib/ansible/modules/windows/win_acl_inheritance.py @@ -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 = ''' -''' \ No newline at end of file +'''