14 lines
262 B
YAML
Executable File
14 lines
262 B
YAML
Executable File
---
|
|
- name: install python bindings for SELinux
|
|
apt:
|
|
name: {{item}}
|
|
state: present
|
|
with_items:
|
|
- libselinux-python
|
|
- libsemanage-python
|
|
|
|
- name: test to see if SELinux is running
|
|
command: getenforce
|
|
register: sestatus
|
|
changed_when: false
|