mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-10 16:01:23 +00:00
50 lines
1.2 KiB
YAML
50 lines
1.2 KiB
YAML
---
|
|
# Basic system configuration. All hardening should also be imported here.
|
|
- name: Configure system
|
|
hosts: all
|
|
become: true
|
|
|
|
# This is to try to avoid the handler issue in pre/post tasks
|
|
handlers:
|
|
- import_tasks: handlers/main.yml
|
|
|
|
pre_tasks:
|
|
- name: Check if ansible cannot be run here
|
|
stat:
|
|
path: /etc/no-ansible
|
|
register: no_ansible
|
|
|
|
- name: Verify if we can run ansible
|
|
assert:
|
|
that:
|
|
- "not no_ansible.stat.exists"
|
|
msg: "/etc/no-ansible exists - skipping run on this node"
|
|
|
|
tasks:
|
|
- name: Loading Variables from OS Common
|
|
import_tasks: tasks/variable_loader_common.yml
|
|
|
|
- name: Configure SSH
|
|
import_tasks: tasks/ssh_config.yml
|
|
|
|
- name: Configure harden settings
|
|
import_tasks: tasks/harden.yml
|
|
|
|
- name: Configure PAM
|
|
import_tasks: tasks/authentication.yml
|
|
|
|
- name: Configure auditd
|
|
import_tasks: tasks/auditd.yml
|
|
|
|
- name: Configure grub
|
|
import_tasks: tasks/grub.yml
|
|
|
|
post_tasks:
|
|
- name: Touching run file that ansible has ran here
|
|
file:
|
|
path: /var/log/ansible.run
|
|
state: touch
|
|
mode: '0644'
|
|
owner: root
|
|
group: root
|