mirror of
https://github.com/ovh/debian-cis.git
synced 2024-11-22 13:37:02 +01:00
7408216957
Add function to retrieve actual partition from symlink in lib/utils.sh Using this func in all 3 audit scripts Improved tests to test this func Apply shellcheck recommendations Trim trailing spaces
18 lines
504 B
Bash
18 lines
504 B
Bash
# 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
|
|
|
|
ln -s /dev/shm /run/shm
|
|
|
|
describe Partition symlink
|
|
register_test retvalshouldbe 1
|
|
register_test contain "[WARN] /run/shm actually is /dev/shm"
|
|
run resolved /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
|
|
|
|
# TODO fill comprehensive tests
|
|
}
|