debian-cis/tests/hardening/4.2.2.1_journald_logs.sh

27 lines
898 B
Bash
Raw Normal View History

2020-12-22 14:42:45 +01:00
# shellcheck shell=bash
# run-shellcheck
test_audit() {
describe Running on blank host
register_test retvalshouldbe 0
# shellcheck disable=2154
run blank "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
2020-12-22 14:42:45 +01:00
2021-01-04 10:10:47 +01:00
local FILE="/etc/systemd/journald.conf"
describe Tests purposely failing
echo "ForwardToSyslog=no" >>"$FILE"
register_test retvalshouldbe 1
register_test contain "$FILE exists, checking configuration"
register_test contain "is present in $FILE"
run noncompliant "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
2021-01-04 10:10:47 +01:00
describe correcting situation
sed -i 's/audit/enabled/' "${CIS_CONF_DIR}/conf.d/${script}.cfg"
"${CIS_CHECKS_DIR}/${script}.sh" --apply || true
2021-01-04 10:10:47 +01:00
describe Checking resolved state
register_test retvalshouldbe 0
register_test contain "is not present in $FILE"
run resolved "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
2020-12-22 15:58:10 +01:00
}