summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSSetup/Distro/Base.pm
diff options
context:
space:
mode:
authorOliver Tappe2007-02-13 17:15:58 +0100
committerOliver Tappe2007-02-13 17:15:58 +0100
commitc563e81ca075ea562f53af5cbbfa98804b8874ff (patch)
treee28250fb46bbcd8bdd7a4f03d959fb5f39049c7c /installer/OpenSLX/OSSetup/Distro/Base.pm
parent* added perl-ified slxos-setup script and the relevant perl-modules, still no... (diff)
downloadcore-c563e81ca075ea562f53af5cbbfa98804b8874ff.tar.gz
core-c563e81ca075ea562f53af5cbbfa98804b8874ff.tar.xz
core-c563e81ca075ea562f53af5cbbfa98804b8874ff.zip
* removed 'settings'-file from distro-info subfolders, as the user should never
edit these anyway. The default configurations are now part of the distro-specific perl-module. git-svn-id: http://svn.openslx.org/svn/openslx/trunk@699 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/OpenSLX/OSSetup/Distro/Base.pm')
-rw-r--r--installer/OpenSLX/OSSetup/Distro/Base.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/installer/OpenSLX/OSSetup/Distro/Base.pm b/installer/OpenSLX/OSSetup/Distro/Base.pm
index cc0f7fd9..45fcf5fd 100644
--- a/installer/OpenSLX/OSSetup/Distro/Base.pm
+++ b/installer/OpenSLX/OSSetup/Distro/Base.pm
@@ -39,12 +39,18 @@ sub initialize
$self->{'stage1c-faked-files'} = [
];
+
+ $self->initDistroInfo();
}
sub fixPrerequiredFiles
{
}
+sub initDistroInfo
+{
+}
+
1;
################################################################################