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.pm4
1 files changed, 4 insertions, 0 deletions
diff --git a/installer/OpenSLX/OSExport/Engine.pm b/installer/OpenSLX/OSExport/Engine.pm
index 085d10f7..413f5fde 100644
--- a/installer/OpenSLX/OSExport/Engine.pm
+++ b/installer/OpenSLX/OSExport/Engine.pm
@@ -167,6 +167,9 @@ sub addExportToConfigDB
{
my $self = shift;
+print "adding the export to the config-DB is not implemented yet, sorry!\n";
+return;
+
my $configDBModule = "OpenSLX::ConfigDB";
unless (eval "require $configDBModule") {
if ($! == 2) {
@@ -184,6 +187,7 @@ sub addExportToConfigDB
my $openslxDB = connectConfigDB();
# insert new export if it doesn't already exist in DB:
my $exportName = $self->{'vendor-os-name'};
+
my $export = fetchExportsByFilter(
$openslxDB, { 'name' => $exportName }, 'id'
);