Added all files

This commit is contained in:
2025-05-30 09:53:45 +02:00
commit e1e343667a
885 changed files with 22353 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
---
# tasks file for common
- name: install epel repo
apt:
name: epel-release
state: present
- include: selinux.yml
- include: ntp.yml

View File

@@ -0,0 +1,15 @@
---
- name: install ntp
apt:
name: ntp
state: present
- name: configure ntp file
template:
src: ntp.conf.j2
dest: /etc/ntp.conf
- name: start ntp
service:
name: ntpd
state: started

View File

@@ -0,0 +1,13 @@
---
- 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