fix: update record_mac_edit.sh to use apparmor instead of selinux

Update record_mac_edit.sh to be compliant with debian11 and debian12 CIS recommendations.

fix issue #195
This commit is contained in:
Damien Cavagnini
2025-07-02 16:49:53 +02:00
parent 99e6694261
commit ef05f97f77
3 changed files with 27 additions and 44 deletions

View File

@ -2,8 +2,7 @@
# run-shellcheck
test_audit() {
describe Running on blank host
register_test retvalshouldbe 0
dismiss_count_for_test
register_test retvalshouldbe 1
# shellcheck disable=2154
run blank "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
@ -13,6 +12,6 @@ test_audit() {
describe Checking resolved state
register_test retvalshouldbe 0
register_test contain "[ OK ] -w /etc/selinux/ -p wa -k MAC-policy is present in /etc/audit/rules.d/audit.rules"
register_test contain "[ OK ] -w /etc/apparmor/ -p wa -k MAC-policy is present in /etc/audit/rules.d/audit.rules"
run resolved "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
}