summaryrefslogtreecommitdiffstats
path: root/experimental
diff options
context:
space:
mode:
authorSebastian Schmelzer2012-04-12 16:34:33 +0200
committerSebastian Schmelzer2012-04-12 16:34:33 +0200
commit4d82fdf3b8211b4fd3fed4bba8c5868657892a65 (patch)
tree4d385a29ba39b5a0bc24f362606ee86c323aeda9 /experimental
parentfix demuxer warnings (diff)
downloadcore-4d82fdf3b8211b4fd3fed4bba8c5868657892a65.tar.gz
core-4d82fdf3b8211b4fd3fed4bba8c5868657892a65.tar.xz
core-4d82fdf3b8211b4fd3fed4bba8c5868657892a65.zip
add experimental patch for faster clone (rsync with weak encryption)
Diffstat (limited to 'experimental')
-rw-r--r--experimental/faster-clone.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/experimental/faster-clone.patch b/experimental/faster-clone.patch
new file mode 100644
index 00000000..e39c37f1
--- /dev/null
+++ b/experimental/faster-clone.patch
@@ -0,0 +1,13 @@
+diff --git a/src/installer/OpenSLX/OSSetup/Engine.pm b/src/installer/OpenSLX/OSSetup/Engine.pm
+index 1ad30ba..9b01a4d 100644
+--- a/src/installer/OpenSLX/OSSetup/Engine.pm
++++ b/src/installer/OpenSLX/OSSetup/Engine.pm
+@@ -1799,7 +1799,7 @@ sub _clone_fetchSource
+ vlog(1, "using exclude-include-filter:\n$excludeIncludeList\n");
+ my $additionalRsyncOptions = $ENV{SLX_RSYNC_OPTIONS} || '';
+ my $rsyncCmd
+- = "rsync -av --numeric-ids --delete --exclude-from=- $additionalRsyncOptions"
++ = "rsync --rsh='ssh -c arcfour' -av --numeric-ids --delete --exclude-from=- $additionalRsyncOptions"
+ . " $source $self->{'vendor-os-path'}";
+ vlog(2, "executing: $rsyncCmd\n");
+ my $rsyncFH;