1
0
mirror of https://github.com/ovh/debian-cis.git synced 2025-04-01 01:22:59 +02:00

Corrected default file path

This commit is contained in:
thibault.dewailly 2016-04-18 17:39:14 +02:00
parent 6971560e06
commit 6019dd9078
193 changed files with 579 additions and 579 deletions
bin
hardening.sh
hardening
1.1_install_updates.sh10.1.1_set_password_exp_days.sh10.1.2_set_password_min_days_change.sh10.1.3_set_password_exp_warning_days.sh10.2_disable_system_accounts.sh10.3_default_root_group.sh10.4_default_umask.sh10.5_lock_inactive_user_account.sh11.1_warning_banners.sh11.2_remove_os_info_warning_banners.sh11.3_graphical_warning_banners.sh12.10_find_suid_files.sh12.11_find_sgid_files.sh12.1_etc_passwd_permissions.sh12.2_etc_shadow_permissions.sh12.3_etc_group_permissions.sh12.4_etc_passwd_ownership.sh12.5_etc_shadow_ownership.sh12.6_etc_group_ownership.sh12.7_find_world_writable_file.sh12.8_find_unowned_files.sh12.9_find_ungrouped_files.sh13.10_find_user_rhosts_files.sh13.11_find_passwd_group_inconsistencies.sh13.12_users_valid_homedir.sh13.13_check_user_homedir_ownership.sh13.14_check_duplicate_uid.sh13.15_check_duplicate_gid.sh13.16_check_duplicate_username.sh13.17_check_duplicate_groupname.sh13.18_find_user_netrc_files.sh13.19_find_user_forward_files.sh13.1_remove_empty_password_field.sh13.20_shadow_group_empty.sh13.2_remove_legacy_passwd_entries.sh13.3_remove_legacy_shadow_entries.sh13.4_remove_legacy_group_entries.sh13.5_find_0_uid_non_root_account.sh13.6_sanitize_root_path.sh13.7_check_user_dir_perm.sh13.8_check_user_dot_file_perm.sh13.9_set_perm_on_user_netrc.sh2.10_home_nodev.sh2.11_removable_device_nodev.sh2.12_removable_device_noexec.sh2.13_removable_device_nosuid.sh2.14_run_shm_nodev.sh2.15_run_shm_nosuid.sh2.16_run_shm_noexec.sh2.17_sticky_bit_world_writable_folder.sh2.18_disable_cramfs.sh2.19_disable_freevxfs.sh2.1_tmp_partition.sh2.20_disable_jffs2.sh2.21_disable_hfs.sh2.22_disable_hfsplus.sh2.23_disable_squashfs.sh2.24_disable_udf.sh2.25_disable_automounting.sh2.2_tmp_nodev.sh2.3_tmp_nosuid.sh2.4_tmp_noexec.sh2.5_var_partition.sh2.6.1_var_tmp_partition.sh2.6.2_var_tmp_nodev.sh2.6.3_var_tmp_nosuid.sh2.6.4_var_tmp_noexec.sh2.7_var_log_partition.sh2.8_var_log_audit_partition.sh2.9_home_partition.sh3.1_bootloader_ownership.sh3.2_bootloader_permissions.sh3.3_bootloader_password.sh3.4_root_password.sh4.1_restrict_core_dumps.sh4.2_enable_nx_support.sh4.3_enable_randomized_vm_placement.sh4.4_disable_prelink.sh4.5_enable_apparmor.sh5.1.1_disable_nis.sh5.1.2_disable_rsh.sh5.1.3_disable_rsh_client.sh5.1.4_disable_talk.sh5.1.5_disable_talk_client.sh5.1.6_disable_telnet_server.sh5.1.7_disable_tftp_server.sh5.1.8_disable_inetd.sh5.2_disable_chargen.sh5.3_disable_daytime.sh5.4_disable_echo.sh5.5_disable_discard.sh5.6_disable_time.sh6.10_disable_http_server.sh6.11_disable_imap_pop.sh6.12_disable_samba.sh6.13_diable_http_proxy.sh6.14_disable_snmp_server.sh6.15_mta_localhost.sh6.16_disable_rsync.sh

@ -54,11 +54,11 @@ while [[ $# > 0 ]]; do
done done
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -43,11 +43,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -71,11 +71,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -71,11 +71,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -71,11 +71,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -76,11 +76,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -39,11 +39,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -45,11 +45,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -31,11 +31,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -65,11 +65,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -45,11 +45,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -27,11 +27,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -42,11 +42,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -43,11 +43,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -41,11 +41,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -41,11 +41,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -41,11 +41,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -56,11 +56,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -56,11 +56,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -56,11 +56,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -42,11 +42,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -44,11 +44,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -44,11 +44,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -42,11 +42,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning FILE, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening FILE, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -40,11 +40,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning FILE, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening FILE, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -43,11 +43,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning FILE, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening FILE, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -54,11 +54,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning FILE, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening FILE, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -43,11 +43,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning FILE, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening FILE, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -43,11 +43,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning FILE, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening FILE, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -43,11 +43,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning FILE, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening FILE, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -43,11 +43,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning FILE, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening FILE, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -42,11 +42,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning FILE, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening FILE, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -42,11 +42,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning FILE, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening FILE, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -45,11 +45,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -52,11 +52,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning FILE, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening FILE, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -46,11 +46,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -46,11 +46,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -46,11 +46,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -50,11 +50,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -69,11 +69,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -94,11 +94,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -62,11 +62,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning FILE, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening FILE, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -61,11 +61,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning FILE, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening FILE, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -66,11 +66,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -54,11 +54,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -54,11 +54,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -54,11 +54,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -66,11 +66,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -66,11 +66,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -66,11 +66,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -41,11 +41,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -43,11 +43,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -43,11 +43,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -55,11 +55,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -43,11 +43,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -43,11 +43,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -43,11 +43,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -43,11 +43,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -43,11 +43,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -42,11 +42,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -66,11 +66,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -66,11 +66,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -66,11 +66,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -55,11 +55,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -55,11 +55,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -66,11 +66,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -66,11 +66,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -66,11 +66,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -55,11 +55,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -55,11 +55,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -55,11 +55,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -64,11 +64,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -51,11 +51,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -62,11 +62,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -41,11 +41,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -61,11 +61,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -39,11 +39,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -45,11 +45,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -44,11 +44,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -41,11 +41,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -42,11 +42,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -74,11 +74,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -46,11 +46,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -73,11 +73,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -45,11 +45,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -74,11 +74,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -74,11 +74,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -45,11 +45,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -54,11 +54,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -54,11 +54,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -54,11 +54,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -54,11 +54,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -54,11 +54,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -46,11 +46,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -46,11 +46,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -45,11 +45,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -45,11 +45,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -45,11 +45,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -52,11 +52,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

@ -56,11 +56,11 @@ check_config() {
} }
# Source Root Dir Parameter # Source Root Dir Parameter
if [ ! -r /etc/default/cis-hardenning ]; then if [ ! -r /etc/default/cis-hardening ]; then
echo "There is no /etc/default/cis-hardenning file, cannot source CIS_ROOT_DIR variable, aborting" echo "There is no /etc/default/cis-hardening file, cannot source CIS_ROOT_DIR variable, aborting"
exit 128 exit 128
else else
. /etc/default/cis-hardenning . /etc/default/cis-hardening
if [ -z $CIS_ROOT_DIR ]; then if [ -z $CIS_ROOT_DIR ]; then
echo "No CIS_ROOT_DIR variable, aborting" echo "No CIS_ROOT_DIR variable, aborting"
fi fi

Some files were not shown because too many files have changed in this diff Show More