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

@@ -42,17 +42,17 @@ author:
EXAMPLES = r'''
- name: Enable SELinux
selinux:
ansible.posix.selinux:
policy: targeted
state: enforcing
- name: Put SELinux in permissive mode, logging actions that would be blocked.
selinux:
ansible.posix.selinux:
policy: targeted
state: permissive
- name: Disable SELinux
selinux:
ansible.posix.selinux:
state: disabled
'''