From aab3538c624d18586a38a721ea90177b3ea1e53e Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Wed, 16 Jan 2008 15:03:15 +0000 Subject: * 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 --- installer/OpenSLX/OSExport/FileSystem/NFS.pm | 2 +- installer/OpenSLX/OSExport/FileSystem/SquashFS.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'installer') 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 -- cgit v1.2.3-55-g7522