summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--installer/OpenSLX/OSExport/FileSystem/NFS.pm2
-rw-r--r--installer/OpenSLX/OSExport/FileSystem/SquashFS.pm2
2 files changed, 2 insertions, 2 deletions
diff --git a/installer/OpenSLX/OSExport/FileSystem/NFS.pm b/installer/OpenSLX/OSExport/FileSystem/NFS.pm
index 3233b10c..e858f513 100644
--- a/installer/OpenSLX/OSExport/FileSystem/NFS.pm
+++ b/installer/OpenSLX/OSExport/FileSystem/NFS.pm
@@ -113,7 +113,7 @@ sub requiredFSMods
{
my $self = shift;
- return 'nfs';
+ return qw( nfs );
}
sub showExportConfigInfo
diff --git a/installer/OpenSLX/OSExport/FileSystem/SquashFS.pm b/installer/OpenSLX/OSExport/FileSystem/SquashFS.pm
index 196a9206..f0618808 100644
--- a/installer/OpenSLX/OSExport/FileSystem/SquashFS.pm
+++ b/installer/OpenSLX/OSExport/FileSystem/SquashFS.pm
@@ -160,7 +160,7 @@ sub requiredFSMods
my @mods = $self->{'block-device'}->requiredBlockDeviceModules();
push @mods, 'squashfs ';
- return join ' ', @mods;
+ return @mods;
}
sub showExportConfigInfo