summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Tappe2009-06-05 20:13:11 +0200
committerOliver Tappe2009-06-05 20:13:11 +0200
commit99d88927b181a3494a03718125e8e2c9f384f45c (patch)
tree8fd48b6057453c3ac598335f70cb958641ac8f6a
parentBugfix for Bug 453 in xserver plugin (diff)
downloadcore-99d88927b181a3494a03718125e8e2c9f384f45c.tar.gz
core-99d88927b181a3494a03718125e8e2c9f384f45c.tar.xz
core-99d88927b181a3494a03718125e8e2c9f384f45c.zip
Fixing #450:
* the class was missing a new() method - yeez! git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2936 95ad53e4-c205-0410-b2fa-d234c58c8868
-rw-r--r--boot-env/OpenSLX/BootEnvironment/Preboot/Base.pm11
1 files changed, 11 insertions, 0 deletions
diff --git a/boot-env/OpenSLX/BootEnvironment/Preboot/Base.pm b/boot-env/OpenSLX/BootEnvironment/Preboot/Base.pm
index 359561e3..89f0e07e 100644
--- a/boot-env/OpenSLX/BootEnvironment/Preboot/Base.pm
+++ b/boot-env/OpenSLX/BootEnvironment/Preboot/Base.pm
@@ -16,12 +16,23 @@ package OpenSLX::BootEnvironment::Preboot::Base;
use strict;
use warnings;
+use File::Basename;
+
use Clone qw(clone);
use OpenSLX::Basics;
use OpenSLX::MakeInitRamFS::Engine::Preboot;
use OpenSLX::Utils;
+sub new
+{
+ my $class = shift;
+
+ my $self = {};
+
+ return bless $self, $class;
+}
+
sub initialize
{
my $self = shift;