File tree 4 files changed +32
-0
lines changed
4 files changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ # The CJIS role seems to assume these packages are installed and the
3
+ # services are started, otherwise an error is encountered.
4
+
5
+ - name : Install packages
6
+ ansible.builtin.package :
7
+ name :
8
+ - " NetworkManager"
9
+ - " firewalld"
10
+ state : present
11
+
12
+ - name : Start services
13
+ ansible.builtin.service :
14
+ name : " NetworkManager"
15
+ enabled : true
16
+ state : started
17
+
18
+ - name : Start services
19
+ ansible.builtin.service :
20
+ name : " firewalld"
21
+ enabled : true
22
+ state : started
Original file line number Diff line number Diff line change 10
10
ansible.builtin.assert :
11
11
that : " ansible_os_family == 'RedHat'"
12
12
13
+ - name : Include prerequisites for cjis profile
14
+ ansible.builtin.include_tasks :
15
+ file : cjis-prerequisites.yml
16
+ when : compliance_profile == 'cjis'
17
+
13
18
- name : Run Compliance Profile
14
19
ansible.builtin.include_role :
15
20
name : " redhatofficial.rhel{{ ansible_distribution_major_version }}_{{ compliance_profile }}"
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ The following compliance profiles are supported by the [**Linux / Enforce Compli
5
5
| ** Profile** | ** Role Repository** |
6
6
| -------------| ---------------------|
7
7
| CIS | https://galaxy.ansible.com/RedHatOfficial/ansible-role-rhel8-cis |
8
+ | CJIS | https://galaxy.ansible.com/RedHatOfficial/ansible-role-rhel8-cjis |
8
9
| CUI | https://galaxy.ansible.com/RedHatOfficial/ansible-role-rhel8-cui |
9
10
| HIPAA | https://galaxy.ansible.com/RedHatOfficial/ansible-role-rhel8-hipaa |
10
11
| OSPP | https://galaxy.ansible.com/RedHatOfficial/ansible-role-rhel8-ospp |
Original file line number Diff line number Diff line change 3
3
# RHEL 7 compliance roles from ComplianceAsCode
4
4
- name : redhatofficial.rhel7_cis
5
5
version : 0.1.69
6
+ - name : redhatofficial.rhel7_cjis
7
+ version : 0.1.69
6
8
- name : redhatofficial.rhel7_cui
7
9
version : 0.1.67
8
10
- name : redhatofficial.rhel7_hipaa
16
18
# RHEL 8 compliance roles from ComplianceAsCode
17
19
- name : redhatofficial.rhel8_cis
18
20
version : 0.1.69
21
+ - name : redhatofficial.rhel8_cjis
22
+ version : 0.1.69
19
23
- name : redhatofficial.rhel8_cui
20
24
version : 0.1.69
21
25
- name : redhatofficial.rhel8_hipaa
You can’t perform that action at this time.
0 commit comments