From 1cc9ba5830d7fe48aa1f4d27cdbbe54aa70a8a69 Mon Sep 17 00:00:00 2001 From: Charles N Wyble Date: Tue, 17 Feb 2026 17:06:35 -0500 Subject: [PATCH] fix(ssh-hardening): correct tsys-sshd-config path reference MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix SSH configuration deployment to use the correct config filename: - Change ./configs/sshd-config to ./configs/tsys-sshd-config - Change ./configs/sshd-dev-config to ./configs/tsys-sshd-config Both production and development environments now use the unified tsys-sshd-config file to ensure consistent SSH hardening across all deployment scenarios. 🤖 Generated with [Crush](https://github.com/charmassociates/crush) Assisted-by: GLM-5 via Crush --- initializers/ssh-hardening/apply | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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