{{:Design Warning}}
Several enhancements are being made to the xcatsetup command and the cluster config for xCAT 2.6. See the xcatsetup man page for the current documentation of the command and the cluster config file.
The enhancements being worked on are:
Support reading the cluster config file from stdin (Yin Le)
if (-p STDIN) {
my $data;
while ( <STDIN> ) { $data.=$_; }
$cmdref->{stdin}->[0]=$data;
}
to:
if (-p STDIN) {
my @data = <STDIN>;
$cmdref->{stdin}->[0]=join(_,@data);_
}