diff --git a/xCAT-client-2.0/pods/man8/mkrrnodes.8.pod b/xCAT-client-2.0/pods/man8/mkrrnodes.8.pod index 70ca3edbc..04c2f060c 100644 --- a/xCAT-client-2.0/pods/man8/mkrrnodes.8.pod +++ b/xCAT-client-2.0/pods/man8/mkrrnodes.8.pod @@ -1,11 +1,11 @@ =head1 NAME -B - Sample tool for adding or deleting many nodes in the xCAT cluster database. +B - Adds or deletes nodes in the xCAT cluster database. =head1 SYNOPSIS -B [B<-d> ]| [B<-C> I] B<-R> I +B [-d ]| [-C a|b|,...,r] -R [startrange,endrange] B [B<-h> | B<--help>] @@ -13,37 +13,13 @@ B [B<-h> | B<--help>] =head1 DESCRIPTION -The B command is a sample tool that adds or deletes (-d) nodes according to a specific -naming convention. You can input the connected unit name (CU, a subset of the cluster, usually in its own -subnet and managed by an xCAT service node) using the -C flag, and you can input the start and end -range using the -R flag. It will also automatically define required nodegroups. - -In this example tool, the node names will have the format: - -BI - -where: - x is a-z, indicating the CU name - 048 is the node number within that CU - y is a-c, indicating which of 3 blades within the "triblade" group it is +The mkrrnodes add or delete (-d) the nodes requested by inputting the CU name (-C) flag and the start and end range (-R) flag. It will also automatically define required nodegroups. =head1 OPTIONS =over 10 -=item B<-C> I - -A single letter designating which CU (connected unit). - -=item B<-R> I - -The numeric start and end of the range of nodes to create. - -=item B<-d> - -Delete the nodes instead of adding them. - =item B<-h|--help> Display usage message. @@ -72,11 +48,11 @@ An error has occurred. =item * -To build a nodelist entry like this "rrb048c","rrb048,qs22,cub,cell,cell-c,compute,tb,rack06",,,,: +To build a nodelist entry like this "rrb048c","rrb048,qs22,cub,cell,cell-c,compute,tb,all,rack06",,,,: B -C b -R 048,048 -To delete a nodelist entry like this "rrb048c","rrb048,qs22,cub,cell,cell-c,compute,tb,rack06",,,,: +To delete a nodelist entry like this "rrb048c","rrb048,qs22,cub,cell,cell-c,compute,tb,all,rack06",,,,: B -d -C b -R 048,048 diff --git a/xCAT-server-2.0/share/xcat/tools/mkrrnodes b/xCAT-server-2.0/share/xcat/tools/mkrrnodes index ef742fade..65704d8e6 100644 --- a/xCAT-server-2.0/share/xcat/tools/mkrrnodes +++ b/xCAT-server-2.0/share/xcat/tools/mkrrnodes @@ -16,7 +16,7 @@ use Getopt::Long; mkrrnodes -d -C -R (delete) Build an nodelist entry that looks like this - "rrb048c","rrb048,qs22,cub,cell,cell-c,compute,tb,rack06",,,, + "rrb048c","rrb048,qs22,cub,cell,cell-c,compute,tb,all,rack06",,,, =cut @@ -43,12 +43,12 @@ foreach my $CU (@::CU) $cmd .= " "; if ($blade eq "a" ) { - $cmd .= "groups=rr$CU$range,ls21,cu$CU,opteron,compute,tb"; + $cmd .= "groups=rr$CU$range,ls21,cu$CU,opteron,compute,tb,all"; } else { if ($blade eq "b" ) { - $cmd .= "groups=rr$CU$range,qs22,cu$CU,cell,cell-b,compute,tb"; + $cmd .= "groups=rr$CU$range,qs22,cu$CU,cell,cell-b,compute,all,tb"; } else { # c - $cmd .= "groups=rr$CU$range,qs22,cu$CU,cell,cell-c,compute,tb"; + $cmd .= "groups=rr$CU$range,qs22,cu$CU,cell,cell-c,compute,all,tb"; } }