The samba rsync server now requires ssl.
authorWayne Davison <wayne@opencoder.net>
Wed, 10 Jun 2020 00:21:51 +0000 (17:21 -0700)
committerWayne Davison <wayne@opencoder.net>
Wed, 10 Jun 2020 00:28:07 +0000 (17:28 -0700)
README.md
prepare-source

index 9007a25b48e6c7a05d1c7120f7ee7a85e3d47061..bcce1b8d410f2aab33efda19a2645056ed16616e 100644 (file)
--- 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.
index b1e762828ea3ae9be6970ff099bd21b6cbccd911..3514a4c809a3ad29fdea8e0aa44c79aa694476a5 100755 (executable)
@@ -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"