summaryrefslogtreecommitdiffstats
path: root/lib/distro-info/ubuntu-6.10_amd64/settings.default
diff options
context:
space:
mode:
authorOliver Tappe2007-12-30 18:52:18 +0100
committerOliver Tappe2007-12-30 18:52:18 +0100
commitb681bcf8ed09029520958106365fd61be8faf24f (patch)
treeee9d8e8b1cb810a2366fca180aef08dd15203a6d /lib/distro-info/ubuntu-6.10_amd64/settings.default
parent* completed test set for attribute merging, fixing several bugs along the (diff)
downloadcore-b681bcf8ed09029520958106365fd61be8faf24f.tar.gz
core-b681bcf8ed09029520958106365fd61be8faf24f.tar.xz
core-b681bcf8ed09029520958106365fd61be8faf24f.zip
cleaned up installation code in several ways:
* Removed some inconsistencies with respect to the separation of prereq- and bootstrap-packages, such that now all packages are being installed properly into the final system (the prereq packages have to installed twice for this). Before, the prereq packages were being installed without their scripts ever being run. While I haven't noticed a specific bug caused by this, the mere possibility seemed a good enough cause to change this. * added a default /etc/hosts file to all distros, as otherwise the lookup of localhost is flaky (at best) * fixed a multiple inclusion bug when expanding the packages of a selection * improved and clarified structure of selections: + now there is always a 'minimal' selection, on which most others are based + the default selection is now merely a different name for some other selection (currently, minimal or textmode, later this should probably be gnome or kde). git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1438 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'lib/distro-info/ubuntu-6.10_amd64/settings.default')
-rw-r--r--lib/distro-info/ubuntu-6.10_amd64/settings.default13
1 files changed, 8 insertions, 5 deletions
diff --git a/lib/distro-info/ubuntu-6.10_amd64/settings.default b/lib/distro-info/ubuntu-6.10_amd64/settings.default
index 372e598f..9b91cf56 100644
--- a/lib/distro-info/ubuntu-6.10_amd64/settings.default
+++ b/lib/distro-info/ubuntu-6.10_amd64/settings.default
@@ -1,6 +1,7 @@
arch = amd64
package-subdir = pool
prereq-packages = main/d/debootstrap/debootstrap_0.3.3.2ubuntu3_all.deb
+release-name = edgy
<repository base>
components = main restricted
distribution = edgy
@@ -22,28 +23,30 @@ prereq-packages = main/d/debootstrap/debootstrap_0.3.3.2ubuntu3_all.deb
repo-subdir = dists
file-for-speedtest = dists/edgy-updates/main/binary-amd64/Packages.bz2
</repository>
-<selection default>
+<selection minimal>
packages = <<END
language-pack-de
linux-image-generic
END
</selection>
<selection gnome>
- base = default
+ base = minimal
packages = <<END
ubuntu-desktop
END
</selection>
<selection kde>
- base = default
+ base = minimal
packages = <<END
kubuntu-desktop
END
</selection>
<selection xfce>
- base = default
+ base = minimal
packages = <<END
xubuntu-desktop
END
</selection>
-release-name = edgy
+<selection default>
+ base = minimal
+</selection>