fix: Cron misrepresenting itself as console

Signed-off-by: Herman van Rink <rink@initfour.nl>
This commit is contained in:
Herman van Rink 2024-03-08 19:50:11 +01:00
parent 007731d2f3
commit 164c05e40b
No known key found for this signature in database
GPG Key ID: BFDF74CF6CDAE489
1 changed files with 1 additions and 1 deletions

View File

@ -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);