JobRunner: fork jobs

This commit is contained in:
Thomas Gelf 2016-06-28 14:34:42 +02:00
parent e858539d2b
commit 4494af559f
1 changed files with 1 additions and 1 deletions

View File

@ -36,11 +36,11 @@ class JobRunner
{
$cmd = 'icingacli director job run ' . $job->id;
$output = `$cmd`;
// TODO: capture output
}
protected function shouldFork()
{
return false;
return true;
}