From b98fd9d4f335889743df76e2ac1a5e45d814ba4d Mon Sep 17 00:00:00 2001 From: lubiana Date: Thu, 12 Dec 2024 03:02:35 +0100 Subject: [PATCH] debug show env --- entrypoint.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/entrypoint.sh b/entrypoint.sh index ff468fb..60d0b23 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -16,8 +16,14 @@ chmod 600 ~/.ssh/id_rsa # Add the remote host's key to the known_hosts file to avoid authenticity confirmation ssh-keyscan -H ${INPUT_REMOTE_HOST} >> ~/.ssh/known_hosts + +cat ~/.ssh/known_hosts + # SCP files to the remote host echo rsync ${INPUT_RSYNC_PARAMETERS} ${INPUT_PATH} ${INPUT_REMOTE_USER}@${INPUT_REMOTE_HOST}:${INPUT_REMOTE_PATH} +pwd +ls -lisaR + exit 0