Update EXAMPLES section in modules (#27)

Update EXAMPLES section in modules to use FQCN

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
Abhijeet Kasurde
2020-05-21 22:24:20 +05:30
committed by GitHub
parent 147caed10d
commit d9e0140b66
9 changed files with 58 additions and 58 deletions

View File

@@ -88,7 +88,7 @@ notes:
EXAMPLES = r'''
- name: Grant user Joe read access to a file
acl:
ansible.posix.acl:
path: /etc/foo.conf
entity: joe
etype: user
@@ -96,14 +96,14 @@ EXAMPLES = r'''
state: present
- name: Removes the ACL for Joe on a specific file
acl:
ansible.posix.acl:
path: /etc/foo.conf
entity: joe
etype: user
state: absent
- name: Sets default ACL for joe on /etc/foo.d/
acl:
ansible.posix.acl:
path: /etc/foo.d/
entity: joe
etype: user
@@ -112,13 +112,13 @@ EXAMPLES = r'''
state: present
- name: Same as previous but using entry shorthand
acl:
ansible.posix.acl:
path: /etc/foo.d/
entry: default:user:joe:rw-
state: present
- name: Obtain the ACL for a specific file
acl:
ansible.posix.acl:
path: /etc/foo.conf
register: acl_info
'''