2020-11-27 09:22:47 +01:00
|
|
|
# shellcheck shell=bash
|
2020-10-27 11:04:33 +01:00
|
|
|
# run-shellcheck
|
|
|
|
test_audit() {
|
|
|
|
describe Running on blank host
|
|
|
|
register_test retvalshouldbe 0
|
|
|
|
dismiss_count_for_test
|
|
|
|
# shellcheck disable=2154
|
2023-09-25 14:24:01 +02:00
|
|
|
run blank "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
|
2020-10-27 11:04:33 +01:00
|
|
|
|
|
|
|
local test_user="testrhostsuser"
|
|
|
|
local test_file=".rhosts"
|
|
|
|
|
2020-12-04 14:08:01 +01:00
|
|
|
describe Tests purposely failing
|
2020-11-30 13:05:41 +01:00
|
|
|
useradd --create-home "$test_user"
|
|
|
|
touch "/home/$test_user/$test_file"
|
2020-10-27 11:04:33 +01:00
|
|
|
register_test retvalshouldbe 1
|
|
|
|
register_test contain "$test_file present"
|
2023-09-25 14:24:01 +02:00
|
|
|
run noncompliant "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
|
2020-10-27 11:04:33 +01:00
|
|
|
|
|
|
|
# cleanup
|
2020-11-30 13:05:41 +01:00
|
|
|
userdel -r "$test_user"
|
2020-12-04 14:08:01 +01:00
|
|
|
}
|