From: David Galloway Date: Fri, 26 Aug 2022 17:37:38 +0000 (-0400) Subject: sync-pull: Fix ssh command X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F2065%2Fhead;p=ceph-build.git 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 --- 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"