For now, just prompt users to start background services at the end of the install process

This commit is contained in:
Duncan Sommerville 2015-01-12 10:53:31 -05:00
parent bf1355a203
commit 0fcac545e6
8 changed files with 12 additions and 21 deletions

View file

@ -29,11 +29,6 @@ class FinishSetup extends Setup {
$errors[] = "ERR";
}
if (empty($errors)) {
// Write service configurations for pypo and media-monitor
$this->startServices();
}
return array(
"message" => $message,
"errors" => $errors,
@ -49,10 +44,4 @@ class FinishSetup extends Setup {
&& unlink(AIRTIME_CONF_TEMP_PATH);
}
function startServices() {
exec("service airtime-media-monitor start");
exec("service airtime-playout start");
exec("service airtime-liquidsoap start");
}
}