summaryrefslogtreecommitdiffstats
path: root/boot-env/OpenSLX/BootEnvironment/PrebootCD.pm
diff options
context:
space:
mode:
Diffstat (limited to 'boot-env/OpenSLX/BootEnvironment/PrebootCD.pm')
-rw-r--r--boot-env/OpenSLX/BootEnvironment/PrebootCD.pm19
1 files changed, 0 insertions, 19 deletions
diff --git a/boot-env/OpenSLX/BootEnvironment/PrebootCD.pm b/boot-env/OpenSLX/BootEnvironment/PrebootCD.pm
index 481a61a0..2775a192 100644
--- a/boot-env/OpenSLX/BootEnvironment/PrebootCD.pm
+++ b/boot-env/OpenSLX/BootEnvironment/PrebootCD.pm
@@ -25,25 +25,6 @@ use File::Path;
use OpenSLX::Basics;
use OpenSLX::Utils;
-sub initialize
-{
- my $self = shift;
- my $params = shift;
-
- return if !$self->SUPER::initialize($params);
-
- $self->{'original-path'} = "$openslxConfig{'public-path'}/preboot";
- $self->{'target-path'} = "$openslxConfig{'public-path'}/preboot.new";
-
- if (!$self->{'dry-run'}) {
- mkpath([$self->{'original-path'}]);
- rmtree($self->{'target-path'});
- mkpath("$self->{'target-path'}/client-config");
- }
-
- return 1;
-}
-
sub _createImage
{
my $self = shift;