for bug 3510200: only don't user HMC

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@11957 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
zhaoertao 2012-03-23 09:35:08 +00:00
parent 20606e36d5
commit 36fc7fca02

View File

@ -3915,7 +3915,7 @@ sub process_request {
my @user_array = $mpatab->getNodeAttribs($mpa, qw(username password));
foreach my $entry (@user_array) {
if ($entry->{username}) {
if ($entry->{username} =~ /^USERID$/ or $entry->{username} !~ /^(HMC|general|admin)$/) {
if ($entry->{username} =~ /^USERID$/ or $entry->{username} !~ /^HMC$/) {
$ent = $entry;
last;
}