summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSExport/Engine.pm
diff options
context:
space:
mode:
Diffstat (limited to 'installer/OpenSLX/OSExport/Engine.pm')
-rw-r--r--installer/OpenSLX/OSExport/Engine.pm9
1 files changed, 1 insertions, 8 deletions
diff --git a/installer/OpenSLX/OSExport/Engine.pm b/installer/OpenSLX/OSExport/Engine.pm
index 6264471a..f7046f60 100644
--- a/installer/OpenSLX/OSExport/Engine.pm
+++ b/installer/OpenSLX/OSExport/Engine.pm
@@ -35,14 +35,10 @@ use vars qw(%supportedExportTypes %supportedDistros);
%supportedExportTypes = (
'nfs'
=> { module => 'NFS' },
- 'nbd-squash'
+ 'nbd'
=> { module => 'NBD_Squash' },
);
-my %aliasedExportTypes = (
- 'nbd' => 'nbd-squash',
-);
-
%supportedDistros = (
'<any>'
=> { module => 'Any' },
@@ -170,9 +166,6 @@ sub _initialize
my $exportName = shift;
my $exportType = lc(shift);
- if (exists $aliasedExportTypes{lc($exportType)}) {
- $exportType = $aliasedExportTypes{lc($exportType)};
- }
if (!exists $supportedExportTypes{lc($exportType)}) {
print _tr("Sorry, export type '%s' is unsupported.\n", $exportType);
print _tr("List of supported export types:\n\t");