summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSExport/ExportType/NBD_Squash.pm
diff options
context:
space:
mode:
authorOliver Tappe2007-05-13 21:01:39 +0200
committerOliver Tappe2007-05-13 21:01:39 +0200
commit20ec9098cb5fc91e79fc5e4c4a161dc211f91983 (patch)
tree11eb953f16c599d1fbd76e467bef9fe816416d3d /installer/OpenSLX/OSExport/ExportType/NBD_Squash.pm
parent* added empty outlines for Debian-3.1 and Debian-4.0 to repository (diff)
downloadcore-20ec9098cb5fc91e79fc5e4c4a161dc211f91983.tar.gz
core-20ec9098cb5fc91e79fc5e4c4a161dc211f91983.tar.xz
core-20ec9098cb5fc91e79fc5e4c4a161dc211f91983.zip
* simplified declaration of base classes via 'use base'
* simplified checking for correct API-version of modules git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1072 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/OpenSLX/OSExport/ExportType/NBD_Squash.pm')
-rw-r--r--installer/OpenSLX/OSExport/ExportType/NBD_Squash.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/installer/OpenSLX/OSExport/ExportType/NBD_Squash.pm b/installer/OpenSLX/OSExport/ExportType/NBD_Squash.pm
index a581bfcc..f721d6d2 100644
--- a/installer/OpenSLX/OSExport/ExportType/NBD_Squash.pm
+++ b/installer/OpenSLX/OSExport/ExportType/NBD_Squash.pm
@@ -13,8 +13,8 @@
# -----------------------------------------------------------------------------
package OpenSLX::OSExport::ExportType::NBD_Squash;
-use vars qw(@ISA $VERSION);
-@ISA = ('OpenSLX::OSExport::ExportType::Base');
+use vars qw($VERSION);
+use base qw(OpenSLX::OSExport::ExportType::Base);
$VERSION = 1.01; # API-version . implementation-version
use strict;
@@ -22,7 +22,7 @@ use Carp;
use File::Basename;
use OpenSLX::Basics;
use OpenSLX::ConfigDB qw(:support);
-use OpenSLX::OSExport::ExportType::Base 1.01;
+use OpenSLX::OSExport::ExportType::Base 1;
use OpenSLX::Utils;
################################################################################