The *dch-selinux* package contains customized SELinux policy modules. I haven't worked out exactly how to build an publish it through a continuous integration pipeline yet, so for now it's just hosted in my user `public_html` folder on the main file server.
17 lines
319 B
YAML
17 lines
319 B
YAML
- name: ensure dch-selinux repository is installed
|
|
copy:
|
|
src: >-
|
|
{{ ansible_distribution }}.repo
|
|
dest: /etc/yum.repos.d/dch-selinux.repo
|
|
mode: u=rw,go=r
|
|
tags:
|
|
- yum-repo
|
|
- install
|
|
|
|
- name: ensure dch-selinux is installed
|
|
package:
|
|
name: dch-selinux
|
|
state: present
|
|
tags:
|
|
- install
|