summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSSetup/Engine.pm
diff options
context:
space:
mode:
authorOliver Tappe2008-02-25 16:20:44 +0100
committerOliver Tappe2008-02-25 16:20:44 +0100
commit31a49734ff8448e0efd18e48d045f6fd79dcd25e (patch)
treedf4b696f8486ea22e17261ff1116b15ac9f1aabb /installer/OpenSLX/OSSetup/Engine.pm
parent* adjusted plugin-API according to recent discussion with Volker: (diff)
downloadcore-31a49734ff8448e0efd18e48d045f6fd79dcd25e.tar.gz
core-31a49734ff8448e0efd18e48d045f6fd79dcd25e.tar.xz
core-31a49734ff8448e0efd18e48d045f6fd79dcd25e.zip
* added support for specifying additional rsync options via environment
variable SLX_RSYNC_OPTIONS (for both cloning and exporting) * log rsync-cmd with verbose-level=2 when exporting a vendor-OS git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1571 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/OpenSLX/OSSetup/Engine.pm')
-rw-r--r--installer/OpenSLX/OSSetup/Engine.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/installer/OpenSLX/OSSetup/Engine.pm b/installer/OpenSLX/OSSetup/Engine.pm
index aeeb377d..3dc7d7c2 100644
--- a/installer/OpenSLX/OSSetup/Engine.pm
+++ b/installer/OpenSLX/OSSetup/Engine.pm
@@ -1608,8 +1608,10 @@ sub _clone_fetchSource
);
my $excludeIncludeList = $self->_clone_determineIncludeExcludeList();
vlog(1, "using exclude-include-filter:\n$excludeIncludeList\n");
+ my $additionalRsyncOptions = $ENV{SLX_RSYNC_OPTIONS} || '';
my $rsyncCmd
- = "rsync -av --delete --exclude-from=- $source $self->{'vendor-os-path'}";
+ = "rsync -av --delete --exclude-from=- $additionalRsyncOptions"
+ . " $source $self->{'vendor-os-path'}";
vlog(2, "executing: $rsyncCmd\n");
my $rsyncFH;
open($rsyncFH, '|-', $rsyncCmd)