Fix checkRpItemsPosition
[ryzomcore.git] / web / public_php / admin / scripts / restart_sequence.php
blob6c38a43caa16d9ddd85d3449fefc03bbec60b1fd
1 <?php
3 set_time_limit(900); // should not exceed 15 minutes
5 define('NELTOOL_NO_USER_NEEDED', true);
7 require_once('../common.php');
8 require_once('../functions_tool_main.php');
10 $params = array();
12 reset($argv);
13 foreach($argv as $sValue)
15 if (strpos($sValue, '=') !== false)
17 $aData = explode('=', $sValue);
18 $params[$aData[0]] = $aData[1];
22 if (isset($params['restart_id']) && isset($params['services']))
24 while (true)
26 print_r($params);
27 sleep(10);