IMP(4.1.3): skip on docker (bootloader)

This commit is contained in:
Thibault Ayanides 2020-11-02 15:46:45 +01:00
parent 91a2824246
commit 5568065c35

View File

@ -1,10 +1,14 @@
# run-shellcheck
test_audit() {
describe Running on blank host
register_test retvalshouldbe 0
dismiss_count_for_test
# shellcheck disable=2154
run blank /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
if [ -f "/.dockerenv" ]; then
skip "SKIPPED on docker"
else
describe Running on blank host
register_test retvalshouldbe 0
dismiss_count_for_test
# shellcheck disable=2154
run blank /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
# TODO fill comprehensive tests
# TODO fill comprehensive tests
fi
}