Revert "fix: avoid logging to stdout before running scp to copy tarball"

This reverts commit f8a09a135b87d18f4ff33b1a75b27f030253b499.
This commit is contained in:
Pallav Vasa 2025-05-17 06:28:26 +00:00
parent 0e2f89bde4
commit 5181a3c194

View File

@ -18,13 +18,7 @@ log() {
echo "[$(date '+%Y-%m-%d %H:%M:%S')] [$level] $*" | tee -a "$LOG_FILE"
}
logO() {
local level="${1^^}" # convert to uppercase
shift
echo "[$(date '+%Y-%m-%d %H:%M:%S')] [$level] $*" >>"$LOG_FILE"
}
logO info "Received SSH_ORIGINAL_COMMAND: $SSH_ORIGINAL_COMMAND"
log info "Received SSH_ORIGINAL_COMMAND: $SSH_ORIGINAL_COMMAND"
if [[ "${SSH_ORIGINAL_COMMAND:-}" == "scp -t $ALLOWED_PATH" ]]; then
exec scp -t "ALLOWED_PATH"