From a1f741433d59df8163a672c0b490733320eea182 Mon Sep 17 00:00:00 2001 From: Burnett01 Date: Mon, 1 Sep 2025 16:04:48 +0000 Subject: [PATCH] fix: remove debug output of known_hosts file in entrypoint script --- entrypoint.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index b88cbb6..66f8cbc 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -39,9 +39,6 @@ if [ "${INPUT_STRICT_HOSTKEYS_CHECKING:-false}" = "true" ]; then echo "Warning: failed to fetch host key for $INPUT_REMOTE_HOST" >&2 exit 1 fi - - #debug - cat ~/.ssh/known_hosts fi RSH="ssh $STRICT_HOSTKEYS_CHECKING $LEGACY_RSA_HOSTKEYS -p $INPUT_REMOTE_PORT $INPUT_RSH"