fix: Cron misrepresenting itself as console

Signed-off-by: Herman van Rink <rink@initfour.nl>
pull/44094/head
Herman van Rink 2 months ago
parent 007731d2f3
commit 164c05e40b
No known key found for this signature in database
GPG Key ID: BFDF74CF6CDAE489

@ -117,7 +117,7 @@ try {
$user = posix_getuid();
$dataDirectoryUser = fileowner($config->getSystemValueString('datadirectory', \OC::$SERVERROOT . '/data'));
if ($user !== $dataDirectoryUser) {
echo "Console has to be executed with the user that owns the data directory" . PHP_EOL;
echo "Cron has to be executed with the user that owns the data directory" . PHP_EOL;
echo "Current user id: " . $user . PHP_EOL;
echo "Owner id of the data directory: " . $dataDirectoryUser . PHP_EOL;
exit(1);

Loading…
Cancel
Save