mono-infrastructure/ansible/playbooks/init-rocky-system-config.yml
2020-12-10 16:40:49 -07:00

42 lines
986 B
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:
- include: 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
include: tasks/variable_loader_common.yml
- name: Configure SSH
include: tasks/ssh-config.yml
- name: Configure harden settings
include: tasks/harden.yml
post_tasks:
- name: Touching run file that ansible has ran here
file:
path: /var/log/ansible.run
state: touch
mode: '0644'
user: root
group: root