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; }