summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSSetup/Distro/Ubuntu_6_10.pm
diff options
context:
space:
mode:
authorOliver Tappe2007-07-28 22:38:11 +0200
committerOliver Tappe2007-07-28 22:38:11 +0200
commit102f63c43b0e32622bb5bf83a84cdac67174f539 (patch)
treeebd5ad2f8c50bca4e8cc38140ae55ee8071bf39c /installer/OpenSLX/OSSetup/Distro/Ubuntu_6_10.pm
parent* changed several class interfaces as a result of trying to integrate support (diff)
downloadcore-102f63c43b0e32622bb5bf83a84cdac67174f539.tar.gz
core-102f63c43b0e32622bb5bf83a84cdac67174f539.tar.xz
core-102f63c43b0e32622bb5bf83a84cdac67174f539.zip
* finished installation support for Debian-etch, Debian-sarge and Ubuntu
are nearly done (Ubuntu still missing a kernel ...) * some more refactorings to accommodate Debian-support git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1282 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/OpenSLX/OSSetup/Distro/Ubuntu_6_10.pm')
-rw-r--r--installer/OpenSLX/OSSetup/Distro/Ubuntu_6_10.pm32
1 files changed, 26 insertions, 6 deletions
diff --git a/installer/OpenSLX/OSSetup/Distro/Ubuntu_6_10.pm b/installer/OpenSLX/OSSetup/Distro/Ubuntu_6_10.pm
index 2882212f..d2ce3bd6 100644
--- a/installer/OpenSLX/OSSetup/Distro/Ubuntu_6_10.pm
+++ b/installer/OpenSLX/OSSetup/Distro/Ubuntu_6_10.pm
@@ -40,10 +40,30 @@ sub initDistroInfo
$self->{config}->{'repository'} = {
'base' => {
'urls' => "
- ftp://localhost/pub/ubuntu
+ http://ubuntu.intergenia.de/ubuntu
",
'name' => 'Ubuntu 6.10',
- 'repo-subdir' => 'dists/edgy',
+ 'repo-subdir' => 'dists',
+ 'distribution' => 'edgy',
+ 'components' => 'main restricted',
+ },
+ 'base_updates' => {
+ 'urls' => "
+ ftp://localhost/pub/ubuntu
+ ",
+ 'name' => 'Ubuntu 6.10 Updates',
+ 'repo-subdir' => 'dists',
+ 'distribution' => 'edgy-updates',
+ 'components' => 'main restricted',
+ },
+ 'base_security' => {
+ 'urls' => "
+ ftp://localhost/pub/ubuntu
+ ",
+ 'name' => 'Ubuntu 6.10 Security',
+ 'repo-subdir' => 'dists',
+ 'distribution' => 'edgy-security',
+ 'components' => 'main restricted',
},
};
@@ -53,14 +73,14 @@ sub initDistroInfo
main/d/debootstrap/debootstrap_1.0.0_all.deb
";
- $self->{config}->{'bootstrap-prereq-packages'} = "
- ";
-
$self->{config}->{'bootstrap-packages'} = "
";
$self->{config}->{'selection'} = {
- 'default' => "kmail",
+ 'default' => "
+ kernel-image-2.6-386
+ kmail
+ ",
};
return;
}