summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config-db/OpenSLX/ConfigDB.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/config-db/OpenSLX/ConfigDB.pm b/config-db/OpenSLX/ConfigDB.pm
index 25f2833c..ea1b6643 100644
--- a/config-db/OpenSLX/ConfigDB.pm
+++ b/config-db/OpenSLX/ConfigDB.pm
@@ -17,6 +17,7 @@ our (@ISA, @EXPORT_OK, %EXPORT_TAGS, $VERSION);
$VERSION = 1; # API-version
use Clone qw(clone);
+use File::Basename;
use Exporter;
@ISA = qw(Exporter);
@@ -2839,7 +2840,7 @@ sub aggregatedSystemFileInfoFor
warn(
_tr(
"setting kernel of system '%s' to '%s'!",
- $info->{name}, $kernelFile
+ $info->{name}, basename($kernelFile)
)
);
}