.
This commit is contained in:
@ -1,5 +1,40 @@
|
||||
#!/bin/bash
|
||||
|
||||
export FRAMEWORK_INCLUDES_FULL_PATH
|
||||
FRAMEWORK_INCLUDES_FULL_PATH="$(realpath ../Framework-Includes)"
|
||||
|
||||
export FRAMEWORK_CONFIGS_FULL_PATH
|
||||
FRAMEWORK_CONFIGS_FULL_PATH="$(realpath ../Framework-ConfigFiles)"
|
||||
|
||||
export PROJECT_INCLUDES_FULL_PATH
|
||||
PROJECT_INCLUDES_FULL_PATH="$(realpath ../Project-Includes)"
|
||||
|
||||
export PROJECT_CONGIGS_FULL_PATH
|
||||
PROJECT_INCLUDES_FULL_PATH="$(realpath ../Project-ConfigFiles)"
|
||||
|
||||
|
||||
#Framework variables are read from hee
|
||||
source $FRAMEWORK_CONFIGS_FULL_PATH/FrameworkVars
|
||||
|
||||
#Boilerplate and support functions
|
||||
FrameworkIncludeFiles="$(ls -1 --color=none $FRAMEWORK_INCLUDES_FULL_PATH/*)"
|
||||
|
||||
IFS=$'\n\t'
|
||||
for file in ${FrameworkIncludeFiles[@]}; do
|
||||
. "$file"
|
||||
done
|
||||
unset IFS
|
||||
|
||||
|
||||
if [[ ProjectIncludes = 1 ]]; then
|
||||
ProjectIncludeFiles="$(ls -1 --color=none $PROJECT_INCLUDES_FULL_PATH/*)"
|
||||
IFS=$'\n\t'
|
||||
for file in ${ProjectIncludeFiles[@]}; do
|
||||
. "$file"
|
||||
done
|
||||
unset IFS
|
||||
fi
|
||||
|
||||
curl --silent ${DL_ROOT}/ConfigFiles/SSH/Configs/tsys-sshd-config > /etc/ssh/sshd_config
|
||||
curl --silent ${DL_ROOT}/ConfigFiles/SSH/Configs/ssh-audit_hardening.conf > /etc/ssh/sshd_config.d/ssh-audit_hardening.conf
|
||||
|
||||
|
Reference in New Issue
Block a user