From 44af79223e30e1337a06361d1ccdb73ecdc8e46d Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Tue, 9 Jun 2020 17:21:51 -0700 Subject: [PATCH] The samba rsync server now requires ssl. --- README.md | 7 ++++++- prepare-source | 6 +++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9007a25b..bcce1b8d 100644 --- a/README.md +++ b/README.md @@ -136,5 +136,10 @@ AVAILABILITY ------------ The main web site for rsync is http://rsync.samba.org/ + The main ftp site is ftp://rsync.samba.org/pub/rsync/ -This is also available as rsync://rsync.samba.org/rsyncftp/ + +This is also available as rsync://download.samba.org/rsyncftp/ if you +connect via ssl. Use the `rsync-ssl` script if you have it, otherwise +connect to the rsync server via a normal rsync command and it will +output some instructions for how to connect. diff --git a/prepare-source b/prepare-source index b1e76282..3514a4c8 100755 --- a/prepare-source +++ b/prepare-source @@ -31,13 +31,13 @@ for action in "${@}"; do else files='[cap]*' fi - rsync -pvz rsync://rsync.samba.org/rsyncftp/generated-files/"$files" . + rsync -ipe ./ssl-rsh rsync://download.samba.org/rsyncftp/generated-files/"$files" . ;; fetchgen) - rsync -pvz rsync://rsync.samba.org/rsyncftp/generated-files/'*' . + rsync -ipe ./ssl-rsh rsync://download.samba.org/rsyncftp/generated-files/'*' . ;; fetchSRC) - rsync -pvrz --exclude=/.git/ rsync://rsync.samba.org/ftp/pub/unpacked/rsync/ . + rsync -ipre ./ssl-rsh --exclude=/.git/ rsync://download.samba.org/ftp/pub/unpacked/rsync/ . ;; *) echo "Unknown action: $action" -- 2.47.2