From 52f60c68be9cb271c4f48f36ee8ce0f28b262812 Mon Sep 17 00:00:00 2001 From: David Galloway Date: Fri, 26 Aug 2022 13:37:38 -0400 Subject: [PATCH] sync-pull: Fix ssh command chacra.ceph.com used to live in OVH and listened for SSH on port 2222. The VM is in Sepia now and listens on 22. Signed-off-by: David Galloway --- scripts/sync-pull | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/sync-pull b/scripts/sync-pull index 7d381d90..87d98c07 100644 --- a/scripts/sync-pull +++ b/scripts/sync-pull @@ -57,7 +57,7 @@ else fi echo $deb_cmd echo "--------------------------------------------" -rsync -Lavh -e 'ssh -p 2222' --progress --exclude '*lockfile*' $deb_cmd +rsync -Lavh --progress --exclude '*lockfile*' $deb_cmd for el_version in 7 8 9; do if $newgen; then @@ -67,7 +67,7 @@ for el_version in 7 8 9; do fi echo $el_cmd echo "--------------------------------------------" - rsync -Lavh -e 'ssh -p 2222' --progress $el_cmd + rsync -Lavh --progress $el_cmd done ssh signer@download.ceph.com "/home/signer/bin/get-tarballs.sh $release $sha1 $version" -- 2.39.5