2007-10-26 22:44:33 +00:00
|
|
|
<?php
|
2007-11-28 19:37:25 +00:00
|
|
|
$TOPDIR = '..';
|
|
|
|
require_once("$TOPDIR/lib/GroupNodeTable.class.php");
|
|
|
|
require_once("$TOPDIR/lib/XCAT/XCATCommand/XCATCommandRunner.class.php");
|
2007-10-26 22:44:33 +00:00
|
|
|
|
|
|
|
$nodeGroupName = @$_REQUEST["nodeGroupName"];
|
|
|
|
|
|
|
|
// Get all the nodes with node information of the group
|
|
|
|
$xcmdr = new XCATCommandRunner();
|
|
|
|
$nodeGroup = $xcmdr->getXCATNodeByGroupName($nodeGroupName);
|
2007-11-24 17:44:09 +00:00
|
|
|
echo GroupNodeTable::getNodeGroupSection($nodeGroup);
|
2007-10-26 22:44:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
?>
|