aboutsummaryrefslogtreecommitdiffstats
path: root/console.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-01-29 16:03:35 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2016-02-01 09:47:13 +0100
commit79d2f3186cad9d2412166c9bd414d73dd97cb3d3 (patch)
treef1caa583bee36ab5848947f0e027f20921fba50f /console.php
parent0202acb926e308dc63aa5d052f30685555b03f65 (diff)
downloadnextcloud-server-79d2f3186cad9d2412166c9bd414d73dd97cb3d3.tar.gz
nextcloud-server-79d2f3186cad9d2412166c9bd414d73dd97cb3d3.zip
Add startup warning that the PCNTL extensions are missing
Diffstat (limited to 'console.php')
-rw-r--r--console.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/console.php b/console.php
index 23f40a15437..2073654fa8d 100644
--- a/console.php
+++ b/console.php
@@ -76,6 +76,10 @@ try {
exit(1);
}
+ if (!function_exists('pcntl_signal')) {
+ echo "The process control (PCNTL) extensions are required in case you want to interrupt long running commands - see http://php.net/manual/en/book.pcntl.php" . PHP_EOL;
+ }
+
$application = new Application(\OC::$server->getConfig());
$application->loadCommands(new ConsoleOutput());
$application->run();