diff --git a/console.php b/console.php index 3da87b75c8e51505c4e09e1c75623dc349c5ef5a..2e55accab21a3a8f4e79a13c9b84ef5c5e331c95 100644 --- a/console.php +++ b/console.php @@ -47,9 +47,9 @@ try { $user = posix_getpwuid(posix_getuid()); $configUser = posix_getpwuid(fileowner(OC::$SERVERROOT . '/config/config.php')); if ($user['name'] !== $configUser['name']) { - echo "Console has to be executed with the same user as the web server is operated" . PHP_EOL; + echo "Console has to be executed with the user that owns the file config/config.php" . PHP_EOL; echo "Current user: " . $user['name'] . PHP_EOL; - echo "Web server user: " . $configUser['name'] . PHP_EOL; + echo "Owner of config.php: " . $configUser['name'] . PHP_EOL; exit(0); } }