From e3fd13de885479b1f3a355cf4c86fbd4dd0f2495 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 12 Mar 2015 21:03:26 +0100 Subject: [PATCH] cron shall not operate in case we are in maintenance mode - fixes #14843 --- cron.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cron.php b/cron.php index 0595cece4f..1cde43c6b9 100644 --- a/cron.php +++ b/cron.php @@ -26,7 +26,11 @@ try { if (\OCP\Util::needUpgrade()) { \OCP\Util::writeLog('cron', 'Update required, skipping cron', \OCP\Util::DEBUG); - exit(); + exit; + } + if (\OC::$server->getSystemConfig()->getValue('maintenance', false)) { + \OCP\Util::writeLog('cron', 'We are in maintenance mode, skipping cron', \OCP\Util::DEBUG); + exit; } // load all apps to get all api routes properly setup