mirror of
https://github.com/ansible-lockdown/RHEL9-CIS.git
synced 2025-12-24 22:23:06 +00:00
27 lines
747 B
YAML
27 lines
747 B
YAML
---
|
|
# This is a playbook to test the tasks.
|
|
- name: Converge
|
|
hosts: all
|
|
gather_facts: true
|
|
|
|
vars:
|
|
role_name: "{{ lookup('env', 'MOLECULE_PROJECT_DIRECTORY') | basename }}"
|
|
ansible_user: root
|
|
system_is_container: true
|
|
rhel9cis_selinux_disable: true
|
|
rhel9cis_rule_5_2_4: false
|
|
rhel9cis_rule_1_1_10: false
|
|
rhel9cis_firewall: "none"
|
|
rhel9cis_rule_4_1_1_1: false
|
|
rhel9cis_rule_4_1_1_2: false
|
|
rhel9cis_rule_4_1_1_3: false
|
|
rhel9cis_rule_4_1_1_4: false
|
|
rhel9cis_rule_4_2_1_2: false
|
|
rhel9cis_rule_4_2_1_4: false
|
|
rhel9cis_rule_5_1_1: false
|
|
|
|
pre_tasks:
|
|
tasks:
|
|
- name: "Include tasks"
|
|
ansible.builtin.include_role:
|
|
name: "{{ role_name }}"
|