From d608be3d1137daaff990541240a7790d95d0e056 Mon Sep 17 00:00:00 2001 From: lissav Date: Mon, 5 Nov 2012 14:48:21 +0000 Subject: [PATCH] fix processing when MN in database and has multiple groups defined git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@14244 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/Utils.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/Utils.pm b/perl-xCAT/xCAT/Utils.pm index 273e5c7f8..181cb993e 100644 --- a/perl-xCAT/xCAT/Utils.pm +++ b/perl-xCAT/xCAT/Utils.pm @@ -3070,7 +3070,8 @@ sub noderangecontainsMn my @nodelist=$tab->getAllNodeAttribs(['node','groups']); foreach my $n (@nodelist) { if (defined($n->{'groups'})) { - if ($n->{'groups'} eq "__mgmtnode") { # this is the MN + my @groups=split(",",$n->{'groups'}); + if ((grep (/__mgmtnode/,@groups))) { # this is the MN $mname=$n->{'node'}; last; }