From: Stephen Soltesz Date: Wed, 13 Apr 2011 21:44:51 +0000 (-0400) Subject: Add 'test' parameter to RebootNodeWithPCU X-Git-Tag: plewww-4.3-64~9^2 X-Git-Url: http://git.onelab.eu/?p=plewww.git;a=commitdiff_plain;h=ec5d361f1753333c0fc8b51140f8819895df260e Add 'test' parameter to RebootNodeWithPCU --- diff --git a/planetlab/common/actions.php b/planetlab/common/actions.php index c4290af..7f751b0 100644 --- a/planetlab/common/actions.php +++ b/planetlab/common/actions.php @@ -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 ) ) {