Files
atap/ATAPAuditor/Reports/Ubuntu 22.04.ps1
T
2026-05-11 09:15:08 +02:00

20 lines
433 B
PowerShell

[Report] @{
Title = "Ubuntu 22.04 Report"
ModuleName = "ATAPAuditor"
BasedOn = @(
"CIS Ubuntu Linux 22.04 version 2.0.0"
)
Sections = @(
[ReportSection] @{
Title = "CIS Benchmarks"
Description = "This section contains the general benchmark results"
SubSections = @(
[ReportSection] @{
Title = 'CIS Ubuntu Linux 22.04'
AuditInfos = Test-AuditGroup "Ubuntu Linux 22.04-CIS-2.0.0"
}
)
}
)
}