summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSExport/ExportType
diff options
context:
space:
mode:
Diffstat (limited to 'installer/OpenSLX/OSExport/ExportType')
-rw-r--r--installer/OpenSLX/OSExport/ExportType/Base.pm7
-rw-r--r--installer/OpenSLX/OSExport/ExportType/NBD_Squash.pm7
-rw-r--r--installer/OpenSLX/OSExport/ExportType/NFS.pm7
3 files changed, 21 insertions, 0 deletions
diff --git a/installer/OpenSLX/OSExport/ExportType/Base.pm b/installer/OpenSLX/OSExport/ExportType/Base.pm
index 3954bfa9..ccf21826 100644
--- a/installer/OpenSLX/OSExport/ExportType/Base.pm
+++ b/installer/OpenSLX/OSExport/ExportType/Base.pm
@@ -60,6 +60,13 @@ sub addExportToConfigDB
return $openslxDB->addExport($export);
}
+sub requiredFSMods
+{
+ my $self = shift;
+
+ return '';
+}
+
################################################################################
### implementation methods
################################################################################
diff --git a/installer/OpenSLX/OSExport/ExportType/NBD_Squash.pm b/installer/OpenSLX/OSExport/ExportType/NBD_Squash.pm
index 52395b65..ec25d067 100644
--- a/installer/OpenSLX/OSExport/ExportType/NBD_Squash.pm
+++ b/installer/OpenSLX/OSExport/ExportType/NBD_Squash.pm
@@ -111,6 +111,13 @@ sub addExportToConfigDB
return $res;
}
+sub requiredFSMods
+{
+ my $self = shift;
+
+ return 'nbd squashfs';
+}
+
################################################################################
### implementation methods
################################################################################
diff --git a/installer/OpenSLX/OSExport/ExportType/NFS.pm b/installer/OpenSLX/OSExport/ExportType/NFS.pm
index b25736b8..dad07b57 100644
--- a/installer/OpenSLX/OSExport/ExportType/NFS.pm
+++ b/installer/OpenSLX/OSExport/ExportType/NFS.pm
@@ -58,6 +58,13 @@ sub purgeExport
1;
}
+sub requiredFSMods
+{
+ my $self = shift;
+
+ return 'nfs';
+}
+
################################################################################
### implementation methods
################################################################################