-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.yml
30 lines (29 loc) · 910 Bytes
/
site.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
# Site playbook
- name: Ansible playbooks for all nodes
hosts: all
debugger: on_failed
gather_facts: true
tasks:
- name: Role Common (DevOps preparation)
ansible.builtin.include_role:
name: thbe.common
- name: Role Operating System (repositories, packages, ...)
ansible.builtin.include_role:
name: thbe.rhel
- name: Role Platform (driver, hardware, ...)
ansible.builtin.include_role:
name: thbe.platform
- name: Role Security (tools, profiles, settings, ...)
ansible.builtin.include_role:
name: thbe.security
- name: Role Baseline (user, configuration, ...)
ansible.builtin.include_role:
name: thbe.baseline
- name: Ansible playbooks for SAP nodes
hosts: sap
gather_facts: true
tasks:
- name: Role SAP (settings, packages, profiles, ...)
ansible.builtin.include_role:
name: thbe.sap