2009-08-05 16:23:52 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* monstart.php
|
|
|
|
* to display the web page for the command "monstart" and the command "monstop" for the selected plugins
|
|
|
|
* the link looks like "monitor/monstart.php?name=rmcmon".
|
|
|
|
*/
|
|
|
|
if(!isset($TOPDIR)) { $TOPDIR="/opt/xcat/ui";}
|
|
|
|
|
|
|
|
require_once "$TOPDIR/lib/security.php";
|
|
|
|
require_once "$TOPDIR/lib/functions.php";
|
|
|
|
require_once "$TOPDIR/lib/display.php";
|
|
|
|
require_once "$TOPDIR/lib/monitor_display.php";
|
|
|
|
|
|
|
|
$name = $_REQUEST['name'];
|
|
|
|
|
2009-08-13 06:45:39 +00:00
|
|
|
//echo $name;
|
2009-08-05 16:23:52 +00:00
|
|
|
|
2009-08-13 06:45:39 +00:00
|
|
|
displayMapper_mon(array('home'=>'main.php', 'monitor'=>'monitor/monlist.php'));
|
|
|
|
|
|
|
|
displayTips(array(""));
|
|
|
|
|
|
|
|
|
|
|
|
displayStatus();
|
|
|
|
|
|
|
|
insertButtons(array('label' => 'Next', 'id'=> 'next', 'onclick'=>''));
|
2009-08-05 16:23:52 +00:00
|
|
|
?>
|