This commit is contained in:
2021-03-29 10:50:49 +08:00
parent 1886c7dbd4
commit ae22c5486e
+2 -1
View File
@@ -93,6 +93,7 @@ class Shutdown extends Component
} }
$shell = 'ps -eo pid,cmd,state | grep %d | grep -v grep'; $shell = 'ps -eo pid,cmd,state | grep %d | grep -v grep';
exec(sprintf($shell, intval($content)), $output, $code); exec(sprintf($shell, intval($content)), $output, $code);
var_dump(sprintf($shell, intval($content)));
if (empty($output)) { if (empty($output)) {
return false; return false;
} }
@@ -131,7 +132,7 @@ class Shutdown extends Component
fclose($resource); fclose($resource);
while ($this->pidIsExists($content)) { while ($this->pidIsExists($content)) {
exec('kill -15 ' . $content); // exec('kill -15 ' . $content);
sleep(1); sleep(1);
} }