ansible-ops-management/init-rocky-system-config.yml

72 lines
2.1 KiB
YAML
Raw Normal View History

2022-02-27 03:19:20 +00:00
---
# Basic system configuration. All hardening should also be imported here.
# Use --extra-vars="host=..." and specify a hostname in the inventory or
# provide an ansible host group name. You can also just use "all" if you
# want to ensure all systems are up to date on the configuration.
- name: Configure system
2023-04-20 00:51:27 +00:00
hosts: "{{ host|default('all') }}"
2022-02-27 03:19:20 +00:00
become: true
# This is to try to avoid the handler issue in pre/post tasks
handlers:
2023-04-22 01:28:46 +00:00
- name: Import handleers
ansible.builtin.import_tasks: handlers/main.yml
2022-02-27 03:19:20 +00:00
pre_tasks:
- name: Check if ansible cannot be run here
2023-04-22 01:28:46 +00:00
ansible.builtin.stat:
2022-02-27 03:19:20 +00:00
path: /etc/no-ansible
register: no_ansible
- name: Verify if we can run ansible
2022-03-28 05:01:23 +00:00
ansible.builtin.assert:
2022-02-27 03:19:20 +00:00
that:
- "not no_ansible.stat.exists"
success_msg: "We are able to run on this node"
fail_msg: "/etc/no-ansible exists - skipping run on this node"
tasks:
- name: Loading Variables from OS Common
2023-04-22 01:28:46 +00:00
ansible.builtin.import_tasks: tasks/variable_loader_common.yml
2022-02-27 03:19:20 +00:00
- name: Configure SSH
2023-04-22 01:28:46 +00:00
ansible.builtin.import_tasks: tasks/ssh_config.yml
2022-02-27 03:19:20 +00:00
- name: Configure harden settings
2023-04-22 01:28:46 +00:00
ansible.builtin.import_tasks: tasks/harden.yml
2022-02-27 03:19:20 +00:00
- name: Configure PAM
2023-04-22 01:28:46 +00:00
ansible.builtin.import_tasks: tasks/authentication.yml
2022-02-27 03:19:20 +00:00
- name: Configure auditd
2023-04-22 01:28:46 +00:00
ansible.builtin.import_tasks: tasks/auditd.yml
2022-02-27 03:19:20 +00:00
- name: Configure grub
2023-04-22 01:28:46 +00:00
ansible.builtin.import_tasks: tasks/grub.yml
2022-02-27 03:19:20 +00:00
- name: Configure common scripts
2023-04-22 01:28:46 +00:00
ansible.builtin.import_tasks: tasks/scripts.yml
2022-02-27 03:19:20 +00:00
2023-04-22 08:24:19 +00:00
- name: Configure motd and banners
ansible.builtin.import_tasks: tasks/banners.yml
2023-04-22 01:30:11 +00:00
- name: Configure common skel items
ansible.builtin.import_tasks: tasks/skel.yml
2023-12-22 21:30:08 +00:00
- name: Configure syslog
ansible.builtin.import_tasks: tasks/syslog.yml
2023-04-22 04:46:27 +00:00
- name: Configure tlog for secure systems
import_tasks: tasks/tlog.yml
when: "'secureboot' in group_names"
2022-02-27 03:19:20 +00:00
post_tasks:
- name: Touching run file that ansible has ran here
2022-03-28 05:01:23 +00:00
ansible.builtin.file:
2022-02-27 03:19:20 +00:00
path: /var/log/ansible.run
state: touch
mode: '0644'
owner: root
group: root
...