Rake Task Check, Wrong "Try Fixing It"
Created by: bassrock
The rake task: bundle exec rake gitlab:check RAILS_ENV=production
Is show the wrong hint for the following:
bundle exec rake gitlab:check RAILS_ENV=production
Log directory writable? ... no
Try fixing it:
sudo chown -R gitlab /home/git/gitlab/log
sudo chmod -R rwX /home/git/gitlab/log
For more information see:
doc/install/installation.md in section "GitLab"
Please fix the error above and rerun the checks.
Tmp directory writable? ... no
Try fixing it:
sudo chown -R gitlab /home/git/gitlab/tmp
sudo chmod -R rwX /home/git/gitlab/tmp
For more information see:
doc/install/installation.md in section "GitLab"
It Should Be:
Log directory writable? ... no
Try fixing it:
sudo chown -R gitlab /home/git/gitlab/log
sudo chmod -R u+rwX /home/git/gitlab/log
For more information see:
doc/install/installation.md in section "GitLab"
Please fix the error above and rerun the checks.
Tmp directory writable? ... no
Try fixing it:
sudo chown -R gitlab /home/git/gitlab/tmp
sudo chmod -R u+rwX /home/git/gitlab/tmp
For more information see:
doc/install/installation.md in section "GitLab"