diff --git a/initializers/ssh-hardening/apply b/initializers/ssh-hardening/apply index 090f360..0a9e34e 100755 --- a/initializers/ssh-hardening/apply +++ b/initializers/ssh-hardening/apply @@ -42,13 +42,13 @@ fi # Deploy SSH configuration based on environment if [[ $DEV_WORKSTATION_CHECK -eq 0 ]]; then # Production SSH configuration - if [[ -f ./configs/sshd-config ]]; then - cp ./configs/sshd-config /etc/ssh/sshd_config + if [[ -f ./configs/tsys-sshd-config ]]; then + cp ./configs/tsys-sshd-config /etc/ssh/sshd_config fi else # Development workstation - more permissive settings - if [[ -f ./configs/sshd-dev-config ]]; then - cp ./configs/sshd-dev-config /etc/ssh/sshd_config + if [[ -f ./configs/tsys-sshd-config ]]; then + cp ./configs/tsys-sshd-config /etc/ssh/sshd_config fi fi