summaryrefslogtreecommitdiffstats
path: root/config-db/slxconfig
diff options
context:
space:
mode:
authorOliver Tappe2007-04-22 10:33:27 +0200
committerOliver Tappe2007-04-22 10:33:27 +0200
commitb2324186c4e85b63b38e88fb884d99d25da9a12e (patch)
treeefbf4818f88bcef1ce9d3ac564e02fc256e25a9f /config-db/slxconfig
parent* exports no longer make use of a two-valued key, but require (diff)
downloadcore-b2324186c4e85b63b38e88fb884d99d25da9a12e.tar.gz
core-b2324186c4e85b63b38e88fb884d99d25da9a12e.tar.xz
core-b2324186c4e85b63b38e88fb884d99d25da9a12e.zip
* list-systems in verbose mode now shows type of export next to the name, in
order to make it obvious which export-type any system is using. git-svn-id: http://svn.openslx.org/svn/openslx/trunk@917 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'config-db/slxconfig')
-rwxr-xr-xconfig-db/slxconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/config-db/slxconfig b/config-db/slxconfig
index dd6dfdab..715754a1 100755
--- a/config-db/slxconfig
+++ b/config-db/slxconfig
@@ -223,9 +223,9 @@ sub listSystems
map { $_->{name} }
sort { $a->{name} cmp $b->{name} }
$openslxDB->fetchClientByID(\@clientIDs, 'name');
- my $export = $openslxDB->fetchExportByID($_->{export_id}, 'name');
+ my $export = $openslxDB->fetchExportByID($_->{export_id});
if (defined $export) {
- $_->{export_id} .= " ($export->{name})";
+ $_->{export_id} = "$export->{name} ($export->{type})";
}
$_;
}