[Ubuntu] disable apparmor (#10024)

This commit is contained in:
Mikhail Koliada
2024-06-14 08:57:12 +02:00
committed by GitHub
parent fb41178b75
commit 145c80df8d
2 changed files with 10 additions and 0 deletions

View File

@@ -6,3 +6,9 @@ Describe "Disk free space" -Skip:(-not [String]::IsNullOrEmpty($env:AGENT_NAME)
$freeSpace | Should -BeGreaterOrEqual 17GB
}
}
Describe "Apparmor is disabled" {
It "Apparmor is disabled" {
systemctl is-active apparmor | Should -Be "inactive"
}
}