debian-cis/tests/hardening/1.1.23_disable_usb_storage.sh

20 lines
785 B
Bash
Raw Normal View History

2020-12-22 14:42:45 +01:00
# shellcheck shell=bash
# run-shellcheck
test_audit() {
2021-01-21 11:21:18 +01:00
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
fi
2020-12-22 14:42:45 +01:00
##################################################################
# For this test, we only check that it runs properly on a blank #
# host, and we check root/sudo consistency. But, we don't test #
# the apply function because it can't be automated or it is very #
# long to test and not very useful. #
##################################################################
2020-12-22 15:58:10 +01:00
}