summaryrefslogtreecommitdiffstats
path: root/installer
diff options
context:
space:
mode:
authorOliver Tappe2008-01-16 16:03:15 +0100
committerOliver Tappe2008-01-16 16:03:15 +0100
commitaab3538c624d18586a38a721ea90177b3ea1e53e (patch)
tree9336811de0890b68698b800e4e63e413c8928979 /installer
parent* use mkpath() instead of system() (diff)
downloadcore-aab3538c624d18586a38a721ea90177b3ea1e53e.tar.gz
core-aab3538c624d18586a38a721ea90177b3ea1e53e.tar.xz
core-aab3538c624d18586a38a721ea90177b3ea1e53e.zip
* requiredFSMods() now returns an array instead of a flattened
list (string) git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1479 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer')
-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