mirror of
https://github.com/ansible-lockdown/RHEL9-CIS.git
synced 2025-12-25 14:43:06 +00:00
21 lines
550 B
YAML
21 lines
550 B
YAML
---
|
|
|
|
- name: "SECTION | 3.1.x | Disable unused network protocols and devices"
|
|
import_tasks: cis_3.1.x.yml
|
|
|
|
- name: "SECTION | 3.2.x | Network Parameters (Host Only)"
|
|
import_tasks: cis_3.2.x.yml
|
|
|
|
- name: "SECTION | 3.3.x | Network Parameters (host and Router)"
|
|
import_tasks: cis_3.3.x.yml
|
|
|
|
- name: "SECTION | 3.4.1.x | Configure firewalld"
|
|
import_tasks: cis_3.4.1.x.yml
|
|
when:
|
|
- rhel9cis_firewall == "firewalld"
|
|
|
|
- name: "SECTION | 3.4.2.x | Configure nftables"
|
|
include_tasks: cis_3.4.2.x.yml
|
|
when:
|
|
- rhel9cis_firewall == "nftables"
|
|
|