summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSSetup/MetaPackager/smart.pm
diff options
context:
space:
mode:
authorOliver Tappe2007-07-28 16:11:27 +0200
committerOliver Tappe2007-07-28 16:11:27 +0200
commitcbce11c51c6aa5674b01821a7adc7c31f7999c7e (patch)
tree38fd368f9b9d1a7db30131578d7fb77060d9800d /installer/OpenSLX/OSSetup/MetaPackager/smart.pm
parent* added example settings file for ubuntu-6.10 (diff)
downloadcore-cbce11c51c6aa5674b01821a7adc7c31f7999c7e.tar.gz
core-cbce11c51c6aa5674b01821a7adc7c31f7999c7e.tar.xz
core-cbce11c51c6aa5674b01821a7adc7c31f7999c7e.zip
* changed several class interfaces as a result of trying to integrate support
for Debian & Ubunto installation (which is still not complete, though) * fixed some bugs along the way (especially the meta-packagers trying to invoke a private function of OpenSLX::OSSetup::Engine) git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1281 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/OpenSLX/OSSetup/MetaPackager/smart.pm')
-rw-r--r--installer/OpenSLX/OSSetup/MetaPackager/smart.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/installer/OpenSLX/OSSetup/MetaPackager/smart.pm b/installer/OpenSLX/OSSetup/MetaPackager/smart.pm
index 3b266ee7..5303a50a 100644
--- a/installer/OpenSLX/OSSetup/MetaPackager/smart.pm
+++ b/installer/OpenSLX/OSSetup/MetaPackager/smart.pm
@@ -57,16 +57,16 @@ sub initPackageSources
sub setupPackageSource
{
- my $self = shift;
- my $repoName = shift;
- my $repoInfo = shift;
+ my $self = shift;
+ my $repoName = shift;
+ my $repoInfo = shift;
my $excludeList = shift;
+ my $repoURLs = shift;
my $repoSubdir = '';
if (length($repoInfo->{'repo-subdir'})) {
$repoSubdir = "/$repoInfo->{'repo-subdir'}";
}
- my $repoURLs = $self->{engine}->sortRepositoryURLs($repoInfo);
my $baseURL = shift @$repoURLs;
my $repoDescr
= qq[$repoName name="$repoInfo->{name}" baseurl=$baseURL$repoSubdir];