SunCluster oneliner: Difference between revisions

From Lolly's Wiki
Jump to navigationJump to search
No edit summary
m (Text replacement - "</source" to "</syntaxhighlight")
Line 26: Line 26:
   }
   }
}'
}'
</source>
</syntaxhighlight>

Revision as of 15:22, 25 November 2021

Einzeiler

Resource Groups to remaster

<source lang=bash>

  1. /usr/cluster/bin/clrg status | \

/usr/bin/nawk ' NR<=5 || ( NF>=3 && $(NF-1)=="Yes" ){

 next;

} NF==4 {

 rg=$1;
 primary=$2;
 if($NF=="Online"){
   printf "%20s\t%s on %s\n",rg,$NF,primary
 }
 while($0 !~ /^$/){
   getline;
   if($NF=="Online"){
     printf "%20s\t%s on %s, but not on primary %s\n",rg,$NF,$1,primary;
     list=list" "rg
   }
 }

} END{

 if(list != ""){
   printf "To fix it do:\n\tclrg remaster %s\n",list;
 }

}' </syntaxhighlight>