2020-11-27 09:22:47 +01:00
|
|
|
# shellcheck shell=bash
|
2019-02-14 18:10:46 +01:00
|
|
|
# run-shellcheck
|
|
|
|
test_audit() {
|
|
|
|
describe Running on blank host
|
2019-02-22 12:39:41 +01:00
|
|
|
register_test retvalshouldbe 1
|
2019-02-14 18:10:46 +01:00
|
|
|
# shellcheck disable=2154
|
2023-09-25 14:24:01 +02:00
|
|
|
run blank "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
|
2019-02-14 18:10:46 +01:00
|
|
|
|
2023-09-25 14:24:01 +02:00
|
|
|
sed -i 's/audit/enabled/' "${CIS_CONF_DIR}/conf.d/${script}.cfg"
|
|
|
|
"${CIS_CHECKS_DIR}/${script}.sh" || true
|
2019-02-22 12:39:41 +01:00
|
|
|
|
|
|
|
describe Checking auto resolved state
|
|
|
|
register_test retvalshouldbe 0
|
2023-09-25 14:24:01 +02:00
|
|
|
run resolved "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
|
2019-02-14 18:10:46 +01:00
|
|
|
}
|