From ec5d361f1753333c0fc8b51140f8819895df260e Mon Sep 17 00:00:00 2001 From: Stephen Soltesz Date: Wed, 13 Apr 2011 17:44:51 -0400 Subject: [PATCH] Add 'test' parameter to RebootNodeWithPCU --- planetlab/common/actions.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 ) ) { -- 2.43.0