Skip to content

Commit a9d47c8

Browse files
authored
Merge pull request #203 from ansible-lockdown/devel
Stig V1R10 Release to main
2 parents 7d5b654 + f8ad22e commit a9d47c8

14 files changed

Lines changed: 203 additions & 59 deletions

File tree

.github/workflows/update_galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
update_role:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
- uses: hspaans/ansible-galaxy-action@master
1919
with:
2020
api_key: ${{ secrets.GALAXY_API_KEY }}

Changelog.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Changes to RHEL8STIG
22

3+
## 2.9.0 Stig V1R10 27th April 2023
4+
5+
- Added new controls
6+
- RHEL-08-10019
7+
- RHEL-08-10358
8+
- updated control IDs
9+
- RHEL-08-10360
10+
- RHEL-08-10540
11+
- RHEL-08-10541
12+
- RHEL-08-10544
13+
- RHEL-08-10800
14+
- RHEL-08-20040
15+
- RHEL-08-20100
16+
- RHEL-08-20101
17+
- RHEL-08-20102
18+
- RHEL-08-20103
19+
- RHEL-08-20220
20+
- RHEL-08-20221
21+
- RHEL-08-20270
22+
- RHEL-08-30070
23+
- RHEL-08-40150
24+
25+
- OracleLinux tested and added
26+
327
## Release 2.8.6
428

529
- [#194](https://github.com/ansible-lockdown/RHEL8-STIG/issues/194) thanks to @JacobBuskirk

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Configure a RHEL8 based system to be complaint with Disa STIG
44

5-
This role is based on RHEL 8 DISA STIG: [Version 1, Rel 9 released on Jan 26, 2023](https://dl.dod.cyber.mil/wp-content/uploads/stigs/zip/U_RHEL_8_V1R9_STIG.zip).
5+
This role is based on RHEL 8 DISA STIG: [Version 1, Rel 10 released on April 24, 2023](https://dl.dod.cyber.mil/wp-content/uploads/stigs/zip/U_RHEL_8_V1R10_STIG.zip).
66

77
---
88

defaults/main.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
## metadata for Audit benchmark
3-
benchmark_version: 'v1r9'
3+
benchmark_version: 'v1r10'
44

55
## Benchmark name used by audting control role
66
# The audit variable found at the base
@@ -108,6 +108,7 @@ rhel_08_040360: true
108108
# CAT 2 rules
109109
rhel_08_010001: true
110110
rhel_08_010010: true
111+
rhel_08_010019: true
111112
rhel_08_010030: true
112113
rhel_08_010040: true
113114
rhel_08_010049: true
@@ -154,6 +155,7 @@ rhel_08_010340: true
154155
rhel_08_010341: true
155156
rhel_08_010350: true
156157
rhel_08_010351: true
158+
rhel_08_010358: true
157159
rhel_08_010359: true
158160
rhel_08_010360: true
159161
rhel_08_010372: true
@@ -571,6 +573,7 @@ rhel8stig_min_supported_os_ver:
571573
CentOS: "8.7"
572574
Rocky: "8.7"
573575
AlmaLinux: "8.7"
576+
OracleLinux: "8.7"
574577

575578
# RHEL-08-040260
576579
# If system is not router, run tasks that disable router functions.
@@ -614,7 +617,7 @@ rhel8stig_aide_cron:
614617
special_time: daily
615618
# Disable the notification check rule to disable mailing notifications
616619
notify_by_mail: true
617-
notify_cmd: ' | /var/spool/mail -s "$(hostname) - Daily aide integrity check run" root@localhost'
620+
notify_cmd: ' | /bin/mail -s "$(hostname) - Daily aide integrity check run" root@localhost'
618621

619622
rhel8stig_cron_special_disable: "{{
620623
rhel8stig_workaround_for_disa_benchmark or

tasks/fix-cat1.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
- name: "HIGH | RHEL-08-010000 | AUDIT | The RHEL 8 must be a vendor-supported release."
44
ansible.builtin.debug:
5-
msg: Minimum supported version of {{ ansible_distribution }} is {{ rhel8stig_min_supported_os_ver[ansible_distribution] }}
5+
msg: Minimum supported version of {{ ansible_distribution }} is {{ rhel8stig_min_supported_os_ver[ansible_distribution] }}
66
changed_when: ansible_distribution_version is not version_compare(rhel8stig_min_supported_os_ver[ansible_distribution], '>=')
77
when:
88
- rhel_08_010000

0 commit comments

Comments
 (0)