summaryrefslogtreecommitdiffstats
path: root/core/register_command.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/register_command.php')
-rw-r--r--core/register_command.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/register_command.php b/core/register_command.php
index bcff56b8aa7..2328bc7685f 100644
--- a/core/register_command.php
+++ b/core/register_command.php
@@ -27,6 +27,9 @@ if (\OC::$server->getConfig()->getSystemValue('installed', false)) {
$application->add(new OC\Core\Command\User\LastSeen());
$application->add(new OC\Core\Command\User\Delete(\OC::$server->getUserManager()));
$application->add(new OC\Core\Command\L10n\CreateJs());
+ $application->add(new OC\Core\Command\Background\Cron(\OC::$server->getConfig()));
+ $application->add(new OC\Core\Command\Background\WebCron(\OC::$server->getConfig()));
+ $application->add(new OC\Core\Command\Background\Ajax(\OC::$server->getConfig()));
} else {
$application->add(new OC\Core\Command\Maintenance\Install(\OC::$server->getConfig()));
}