summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSSetup/Distro/Debian_3_1.pm
diff options
context:
space:
mode:
authorOliver Tappe2007-05-13 21:00:28 +0200
committerOliver Tappe2007-05-13 21:00:28 +0200
commit6d24298df6ca34f89c9421c36a6c053975e23b13 (patch)
tree56ff4a817e203612254d44660fcb6832dca0574e /installer/OpenSLX/OSSetup/Distro/Debian_3_1.pm
parentBetter and simpler solution; thanks Olli :) (diff)
downloadcore-6d24298df6ca34f89c9421c36a6c053975e23b13.tar.gz
core-6d24298df6ca34f89c9421c36a6c053975e23b13.tar.xz
core-6d24298df6ca34f89c9421c36a6c053975e23b13.zip
* added empty outlines for Debian-3.1 and Debian-4.0 to repository
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1071 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/OpenSLX/OSSetup/Distro/Debian_3_1.pm')
-rw-r--r--installer/OpenSLX/OSSetup/Distro/Debian_3_1.pm88
1 files changed, 88 insertions, 0 deletions
diff --git a/installer/OpenSLX/OSSetup/Distro/Debian_3_1.pm b/installer/OpenSLX/OSSetup/Distro/Debian_3_1.pm
new file mode 100644
index 00000000..be63775b
--- /dev/null
+++ b/installer/OpenSLX/OSSetup/Distro/Debian_3_1.pm
@@ -0,0 +1,88 @@
+# Copyright (c) 2006, 2007 - OpenSLX GmbH
+#
+# This program is free software distributed under the GPL version 2.
+# See http://openslx.org/COPYING
+#
+# If you have any feedback please consult http://openslx.org/feedback and
+# send your suggestions, praise, or complaints to feedback@openslx.org
+#
+# General information about OpenSLX can be found at http://openslx.org/
+# -----------------------------------------------------------------------------
+# Debian_3_1.pm
+# - provides Debian-3.1-specific overrides of the OpenSLX OSSetup API.
+# -----------------------------------------------------------------------------
+package OpenSLX::OSSetup::Distro::Debian_3_1;
+
+use vars qw($VERSION);
+use base qw(OpenSLX::OSSetup::Distro::Base);
+$VERSION = 1.01; # API-version . implementation-version
+
+use strict;
+use Carp;
+use OpenSLX::Basics;
+use OpenSLX::OSSetup::Distro::Base 1;
+
+################################################################################
+### implementation
+################################################################################
+sub new
+{
+ my $class = shift;
+ my $self = {
+ 'base-name' => 'debian-3.1',
+ };
+ return bless $self, $class;
+}
+
+sub initialize
+{
+ my $self = shift;
+ my $engine = shift;
+
+ $self->SUPER::initialize($engine);
+ $self->{'packager-type'} = 'dpkg';
+ $self->{'meta-packager-type'} = $ENV{SLX_META_PACKAGER} || 'apt';
+ $self->{'stage1c-faked-files'} = [
+ ];
+}
+
+sub fixPrerequiredFiles
+{
+ my $self = shift;
+ my $stage1cDir = shift;
+}
+
+sub initDistroInfo
+{
+ my $self = shift;
+ $self->{config}->{'repository'} = {
+ 'base' => {
+ 'urls' => "
+ ",
+ 'name' => '',
+ 'repo-subdir' => '',
+ },
+ 'base_update' => {
+ 'urls' => '
+ ',
+ 'name' => '',
+ 'repo-subdir' => '',
+ },
+ };
+
+ $self->{config}->{'package-subdir'} = '';
+
+ $self->{config}->{'prereq-packages'} = "
+ ";
+
+ $self->{config}->{'bootstrap-prereq-packages'} = "";
+
+ $self->{config}->{'bootstrap-packages'} = "
+ ";
+
+ $self->{config}->{'selection'} = {
+ 'default' => "list any packagenames here",
+ }
+}
+
+1; \ No newline at end of file