From 5568065c352b2aa06ce0ae4fc376a20f54eb4b04 Mon Sep 17 00:00:00 2001 From: Thibault Ayanides Date: Mon, 2 Nov 2020 15:46:45 +0100 Subject: [PATCH] IMP(4.1.3): skip on docker (bootloader) --- tests/hardening/4.1.3_audit_bootloader.sh | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/tests/hardening/4.1.3_audit_bootloader.sh b/tests/hardening/4.1.3_audit_bootloader.sh index b333419..b0ebe2a 100644 --- a/tests/hardening/4.1.3_audit_bootloader.sh +++ b/tests/hardening/4.1.3_audit_bootloader.sh @@ -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 }