summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSExport/ExportType/Base.pm
diff options
context:
space:
mode:
authorOliver Tappe2007-05-29 19:35:03 +0200
committerOliver Tappe2007-05-29 19:35:03 +0200
commita463bb83d79e6d769962e53a1b677e93e03274c5 (patch)
tree92c586eacefe9550b0f424c468099650bd9c46a2 /installer/OpenSLX/OSExport/ExportType/Base.pm
parentIncomplete hwdata/pcitable, for the problem see #100 ... (diff)
downloadcore-a463bb83d79e6d769962e53a1b677e93e03274c5.tar.gz
core-a463bb83d79e6d769962e53a1b677e93e03274c5.tar.xz
core-a463bb83d79e6d769962e53a1b677e93e03274c5.zip
* (hopefully) fixed problem with respect to wget repeatedly failing with
'files exists' errors under some circumstances: we now simply remove that file and try again * renamed 'export-filter.local' to 'export-filter' and 'clone-filter.local' to 'clone-filter' * completed example files for clone-filter and export-filter for all distros * split distro-info in two parts: the static, shared part (now living in /opt/openslx/share) and the configurable part living in /etc/opt/openslx. This is the last part of settings file related changes, closing ticket#122 git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1106 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/OpenSLX/OSExport/ExportType/Base.pm')
-rw-r--r--installer/OpenSLX/OSExport/ExportType/Base.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/installer/OpenSLX/OSExport/ExportType/Base.pm b/installer/OpenSLX/OSExport/ExportType/Base.pm
index a21d5499..e0f5c5be 100644
--- a/installer/OpenSLX/OSExport/ExportType/Base.pm
+++ b/installer/OpenSLX/OSExport/ExportType/Base.pm
@@ -79,7 +79,8 @@ sub determineIncludeExcludeList
# in front of the filterset given by the package (as the local filters
# should always overrule the vendor filters):
my $distroName = $self->{engine}->{'distro-name'};
- my $localFilterFile = "../lib/distro-info/$distroName/export-filter.local";
+ my $localFilterFile
+ = "$openslxConfig{'config-path'}/distro-info/$distroName/export-filter";
my $includeExcludeList = slurpFile($localFilterFile, 1);
$includeExcludeList .= $self->{engine}->{distro}->{'export-filter'};
$includeExcludeList =~ s[^\s+][]igms;