From 6d24298df6ca34f89c9421c36a6c053975e23b13 Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Sun, 13 May 2007 19:00:28 +0000 Subject: * 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 --- installer/OpenSLX/OSSetup/Distro/Debian_3_1.pm | 88 ++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 installer/OpenSLX/OSSetup/Distro/Debian_3_1.pm (limited to 'installer/OpenSLX/OSSetup/Distro/Debian_3_1.pm') 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 -- cgit v1.2.3-55-g7522