mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
Update Queue.php
This commit is contained in:
parent
ba5afc2fa3
commit
4316de07a6
@ -44,13 +44,11 @@ class Queue extends Controller
|
|||||||
{
|
{
|
||||||
SystemQueue::mQuery()->layTable(function () {
|
SystemQueue::mQuery()->layTable(function () {
|
||||||
$this->title = '系统任务管理';
|
$this->title = '系统任务管理';
|
||||||
$this->iswin = ProcessService::instance()->iswin();
|
$this->iswin = ProcessService::iswin();
|
||||||
if ($this->super = AdminService::isSuper()) {
|
if ($this->super = AdminService::isSuper()) {
|
||||||
$process = ProcessService::instance();
|
$this->command = ProcessService::think('xadmin:queue start');
|
||||||
if ($process->iswin() || empty($_SERVER['USER'])) {
|
if (!ProcessService::iswin() && !empty($_SERVER['USER'])) {
|
||||||
$this->command = $process->think('xadmin:queue start');
|
$this->command = "sudo -u {$_SERVER['USER']} {$this->command}";
|
||||||
} else {
|
|
||||||
$this->command = "sudo -u {$_SERVER['USER']} {$process->think('xadmin:queue start')}";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, function (QueryHelper $query) {
|
}, function (QueryHelper $query) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user