summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSSetup/Engine.pm
diff options
context:
space:
mode:
authorOliver Tappe2007-05-02 23:46:47 +0200
committerOliver Tappe2007-05-02 23:46:47 +0200
commit679efe16757beda042e0ecba2765737c2b326d22 (patch)
treebbfd06d0826bc3cbb97f14e1ee4a27ae90d900c5 /installer/OpenSLX/OSSetup/Engine.pm
parentoverhaul the settings concept: (diff)
downloadcore-679efe16757beda042e0ecba2765737c2b326d22.tar.gz
core-679efe16757beda042e0ecba2765737c2b326d22.tar.xz
core-679efe16757beda042e0ecba2765737c2b326d22.zip
* renamed 'ossetup-max-retry-count' to 'ossetup-max-try-count' and started to use it
in OSSetup::Engine. git-svn-id: http://svn.openslx.org/svn/openslx/trunk@989 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/OpenSLX/OSSetup/Engine.pm')
-rw-r--r--installer/OpenSLX/OSSetup/Engine.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/OpenSLX/OSSetup/Engine.pm b/installer/OpenSLX/OSSetup/Engine.pm
index fde5f2f9..a9376132 100644
--- a/installer/OpenSLX/OSSetup/Engine.pm
+++ b/installer/OpenSLX/OSSetup/Engine.pm
@@ -449,7 +449,7 @@ sub downloadBaseFiles
my $pkgSubdir = $self->{'distro-info'}->{'package-subdir'};
my @URLs = @{$self->{'baseURLs'}};
- my $maxTryCount = 5; # TODO: make this configurable!
+ my $maxTryCount = $openslxConfig{'ossetup-max-try-count'};
my @foundFiles;
foreach my $fileVariantStr (@$files) {