debian-cis/src/skel

50 lines
1.2 KiB
Plaintext
Raw Normal View History

2016-04-01 16:48:31 +02:00
#!/bin/bash
# run-shellcheck
2016-04-01 16:48:31 +02:00
#
# CIS Debian Hardening
2016-04-01 16:48:31 +02:00
#
#
# Hardening script skeleton replace this line with proper point treated
#
set -e # One error, it's over
set -u # One variable unset, it's over
# This function will be called if the script status is on enabled / audit mode
2020-12-22 15:58:10 +01:00
audit() {
2016-04-01 16:48:31 +02:00
:
}
# This function will be called if the script status is on enabled mode
2020-12-22 15:58:10 +01:00
apply() {
2016-04-01 16:48:31 +02:00
:
}
# This function will check config parameters required
check_config() {
:
}
# Source Root Dir Parameter
if [ -r /etc/default/cis-hardening ]; then
2020-12-22 11:49:26 +01:00
# shellcheck source=../../debian/default
2016-04-18 17:39:14 +02:00
. /etc/default/cis-hardening
fi
if [ -z "$CIS_ROOT_DIR" ]; then
echo "There is no /etc/default/cis-hardening file nor cis-hardening directory in current environment."
echo "Cannot source CIS_ROOT_DIR variable, aborting."
exit 128
fi
2016-04-01 16:48:31 +02:00
# Main function, will call the proper functions given the configuration (audit, enabled, disabled)
2020-12-22 11:49:26 +01:00
if [ -r "$CIS_ROOT_DIR"/lib/main.sh ]; then
# shellcheck source=../../lib/main.sh
. "$CIS_ROOT_DIR"/lib/main.sh
else
echo "Cannot find main.sh, have you correctly defined your root directory? Current value is $CIS_ROOT_DIR in /etc/default/cis-hardening"
exit 128
fi