Fix bogus error message from rmdef.

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2542 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
nott 2008-12-11 17:58:37 +00:00
parent c0d7a0fd49
commit 932bd2d405

View File

@ -2764,7 +2764,7 @@ sub defrm
# make a new "groups" list for the node without the
# group that is being removed
my $first = 1;
my $newgrps;
my $newgrps = "";
foreach my $grp (@gprslist)
{
chomp($grp);
@ -2780,7 +2780,7 @@ sub defrm
{
$newgrps .= ",";
}
$newgrps .= $grp;
$newgrps .="$grp";
$first = 0;
}