summaryrefslogtreecommitdiffstats
path: root/config-db/slxconfig
diff options
context:
space:
mode:
Diffstat (limited to 'config-db/slxconfig')
-rwxr-xr-xconfig-db/slxconfig5
1 files changed, 4 insertions, 1 deletions
diff --git a/config-db/slxconfig b/config-db/slxconfig
index bd0ca6bd..9a29d1c5 100755
--- a/config-db/slxconfig
+++ b/config-db/slxconfig
@@ -977,7 +977,7 @@ sub changeClientInConfigDB
"you have to specify the name of the client you'd like to change!\n"
);
}
-
+
my @clientKeys = $openslxDB->getColumnsOfTable('client');
push @clientKeys, 'systems', 'add-systems', 'remove-systems';
my @clientAttrKeys = OpenSLX::AttributeRoster->getClientAttrs();
@@ -1443,6 +1443,9 @@ sub _cleanName
return $1;
}
+ # for convenience, we alias default to <<<default>>>
+ $name = '<<<default>>>' if $name eq 'default';
+
return $name;
}