Add 'test' parameter to RebootNodeWithPCU
authorStephen Soltesz <soltesz@cs.princeton.edu>
Wed, 13 Apr 2011 21:44:51 +0000 (17:44 -0400)
committerStephen Soltesz <soltesz@cs.princeton.edu>
Wed, 13 Apr 2011 21:44:51 +0000 (17:44 -0400)
planetlab/common/actions.php

index c4290af..7f751b0 100644 (file)
@@ -393,8 +393,10 @@ switch ($action) {
  case 'reboot-node-with-pcu': {
    $node_id=intval($_POST['node_id']);
    $hostname= $_POST['hostname'];
+   $test = $_POST['test'];
+   settype($test, "boolean");
 
-   $ret = $api->RebootNodeWithPCU( $node_id );
+   $ret = $api->RebootNodeWithPCU( $node_id, $test );
    $error= $api->error();
 
    if( empty( $error ) ) {