Template: Example of SELinux context type (#54861)

* Update template.py with an example using selinux with a suggestion of how to get the proper file context (cheating!)
pull/4420/head
Mauricio Tavares 2019-04-15 13:06:48 -04:00 committed by Alicia Cozine
parent e90df4b566
commit f8834c5339
1 changed files with 8 additions and 0 deletions

View File

@ -162,6 +162,14 @@ EXAMPLES = r'''
group: wheel
mode: u=rw,g=r,o=r
- name: Copy a version of named.conf that is dependent on the OS. setype obtained by doing ls -Z /etc/named.conf on original file
template:
src: named.conf_{{ ansible_os_family}}.j2
dest: /etc/named.conf
group: named
setype: named_conf_t
mode: 0640
- name: Create a DOS-style text file from a template
template:
src: config.ini.j2