diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2016-01-05 15:12:38 +0100 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2016-01-05 15:12:38 +0100 |
commit | d7a35357c023ac8573c5e3e82144521b200b035e (patch) | |
tree | bf678316b3e60964016971dff877d2c75656b313 | |
parent | 2b194d6f88cecdd51e9b05219c2cf092f9bfb357 (diff) | |
parent | 6d7a5e002cfcaa874e759f125060eb0373f52d28 (diff) | |
download | nextcloud-server-d7a35357c023ac8573c5e3e82144521b200b035e.tar.gz nextcloud-server-d7a35357c023ac8573c5e3e82144521b200b035e.zip |
Merge pull request #21446 from edwardcrompton/feature/21413-better-occ-user-help
Feature/21413 better occ user help
-rw-r--r-- | console.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/console.php b/console.php index ab845aced50..9386f544939 100644 --- a/console.php +++ b/console.php @@ -60,6 +60,7 @@ try { 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 "Owner of config.php: " . $configUser['name'] . PHP_EOL; + echo "Try adding 'sudo -u " . $configUser['name'] . " ' to the beginning of the command (without the single quotes)" . PHP_EOL; exit(0); } } |