summaryrefslogtreecommitdiff
path: root/lib/common-functions
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2020-10-20 16:53:28 +0200
committerErich Eckner <git@eckner.net>2020-10-20 16:53:28 +0200
commit17bd4887275d28a63e514ad0f6ff5d4f66e598fe (patch)
tree5b76e526159bed5e22ef7ee980df07631b2d7613 /lib/common-functions
parent6541883a54297ab403e5b28eb896a366a7decd19 (diff)
downloadbuilder-17bd4887275d28a63e514ad0f6ff5d4f66e598fe.tar.xz
master_mirror_sftp_root new to configure a possibly different root directory of the http mirror from the sftp user (rsync is still expected to have its root identical to the http one)
Diffstat (limited to 'lib/common-functions')
-rwxr-xr-xlib/common-functions6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/common-functions b/lib/common-functions
index 110578f..b64af00 100755
--- a/lib/common-functions
+++ b/lib/common-functions
@@ -871,6 +871,12 @@ failsafe_sftp() {
trial_counter=20
trap 'rm -rf --one-file-system "${temp_dir}"' EXIT
cat > "${temp_dir}/input"
+ if [ -n "${master_mirror_sftp_root}" ]; then
+ sed -i '
+ /^\(rm\|rename\) / s@"\([^"]\+\)"@"'"${master_mirror_sftp_root}"'/\1"@g
+ /^ln / s@"\([^"]\+\)"$@"'"${master_mirror_sftp_root}"'/\1"@
+ ' "${temp_dir}/input"
+ fi
sed -n '
s/^rm "\([^"]\+\)"$/- \1/
s/^ln\( [^"]\S*\)* "[^"]\+" "\([^"]\+\)"$/+ \2/