summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSExport/Distro/Base.pm
diff options
context:
space:
mode:
Diffstat (limited to 'installer/OpenSLX/OSExport/Distro/Base.pm')
-rw-r--r--installer/OpenSLX/OSExport/Distro/Base.pm18
1 files changed, 9 insertions, 9 deletions
diff --git a/installer/OpenSLX/OSExport/Distro/Base.pm b/installer/OpenSLX/OSExport/Distro/Base.pm
index 29659f09..b6fc1fae 100644
--- a/installer/OpenSLX/OSExport/Distro/Base.pm
+++ b/installer/OpenSLX/OSExport/Distro/Base.pm
@@ -9,15 +9,15 @@
# General information about OpenSLX can be found at http://openslx.org/
# -----------------------------------------------------------------------------
# Base.pm
-# - provides empty base of the distro-specific part of the OpenSLX
-# OSExport API.
+# - provides empty base of the distro-specific part of the OpenSLX
+# OSExport API.
# -----------------------------------------------------------------------------
package OpenSLX::OSExport::Distro::Base;
use strict;
use warnings;
-our $VERSION = 1.01; # API-version . implementation-version
+our $VERSION = 1.01; # API-version . implementation-version
use OpenSLX::Basics;
@@ -26,18 +26,18 @@ use OpenSLX::Basics;
################################################################################
sub new
{
- confess "Creating OpenSLX::OSExport::Distro::Base-objects directly makes no sense!";
+ confess "Creating OpenSLX::OSExport::Distro::Base-objects directly makes no sense!";
}
sub initialize
{
- my $self = shift;
- my $engine = shift;
+ my $self = shift;
+ my $engine = shift;
- $self->{'engine'} = $engine;
+ $self->{'engine'} = $engine;
- $self->initDistroInfo();
- return;
+ $self->initDistroInfo();
+ return;
}
sub initDistroInfo