mirror of
https://github.com/ovh/debian-cis.git
synced 2025-07-15 05:12:17 +02:00

Update record_mac_edit.sh to be compliant with debian11 and debian12 CIS recommendations. fix issue #195 Co-authored-by: Damien Cavagnini <damien.cavagnini@corp.ovh.com>
18 lines
619 B
Bash
18 lines
619 B
Bash
# shellcheck shell=bash
|
|
# run-shellcheck
|
|
test_audit() {
|
|
describe Running on blank host
|
|
register_test retvalshouldbe 1
|
|
# shellcheck disable=2154
|
|
run blank "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
|
|
|
|
describe Correcting situation
|
|
sed -i 's/audit/enabled/' "${CIS_CONF_DIR}/conf.d/${script}.cfg"
|
|
"${CIS_CHECKS_DIR}/${script}.sh" || true
|
|
|
|
describe Checking resolved state
|
|
register_test retvalshouldbe 0
|
|
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
|
|
}
|