From bf2d964f6fdf70ecae187be3149d9b0c2531badb Mon Sep 17 00:00:00 2001 From: Burnett01 Date: Mon, 1 Sep 2025 16:13:13 +0000 Subject: [PATCH] fix: remove debug output of known_hosts file in entrypoint script --- entrypoint.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 47ec5e5..84bc5d5 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -35,10 +35,6 @@ if [ "${INPUT_STRICT_HOSTKEYS_CHECKING:-false}" = "true" ]; then echo "$key" | ssh-keygen -lf - # add to known hosts echo "$key" | while IFS= read -r line; do hosts-add "$line"; done - - set +x - echo "debug" - cat $HOME/.ssh/known_hosts else echo "Warning: failed to fetch host key for $INPUT_REMOTE_HOST" >&2 exit 1