Skip to content
Snippets Groups Projects
Commit 0faadb63 authored by Holger Levsen's avatar Holger Levsen
Browse files

reproducible Debian live: use scp -O: Use the legacy SCP protocol instead of...

reproducible Debian live: use scp -O: Use the legacy SCP protocol instead of the SFTP protocol, thanks lucas & Myon

Signed-off-by: default avatarHolger Levsen <holger@layer-acht.org>
parent 334e8b6c
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@
# Copyright 2022-2023 Holger Levsen <holger@layer-acht.org>
# released under the GPLv2
DEBUG=true
DEBUG=false
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
......@@ -51,7 +51,7 @@ rsync_remote_results() {
fi
local URL="${REPRODUCIBLE_URL}/${PROJECT_PATH}/$EXTRADIR${filename}"
# Copy the new results from the build node to the web server node
scp -v -p -o Batchmode=yes "$NODE":"$origfile" "$filename.tmp"
scp -O -p -o Batchmode=yes "$NODE":"$origfile" "$filename.tmp"
chmod 755 "$filename.tmp"
mv "$filename.tmp" "$filename"
echo "$(date -u) - enjoy $URL"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment