IMP(9.3.2): Add custom configuration management

Add create_config to allow user to customize their conf

Improve tests
Apply shellcheck recommendations
This commit is contained in:
Charles Herlin
2019-02-22 15:40:01 +01:00
parent 605a768fe1
commit f7f2f614aa
2 changed files with 37 additions and 11 deletions

View File

@ -1,10 +1,22 @@
# run-shellcheck
test_audit() {
describe Running on blank host
register_test retvalshouldbe 0
dismiss_count_for_test
register_test retvalshouldbe 1
# shellcheck disable=2154
run blank /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
# TODO fill comprehensive tests
describe Fix state
sed -i 's/audit/enabled/' /opt/debian-cis/etc/conf.d/"${script}".cfg
/opt/debian-cis/bin/hardening/"${script}".sh || true
describe Checking resolved state
register_test retvalshouldbe 0
run resolved /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
echo "OPTIONS='LogLevel=DEBUG'" >> /opt/debian-cis/etc/conf.d/"${script}".cfg
sed -i 's/LogLevel INFO/LogLevel DEBUG/' /etc/ssh/sshd_config
describe Checking custom conf
register_test retvalshouldbe 0
run customconf /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
}