gitlab user is in git group? ... yes
Has no "-e" in ~git/.profile ... yes
Git configured for gitlab user? ... yes
Has python2? ... yes
python2 is supported version? ... yes
Checking Environment ... Finished
Checking Gitolite ...
Using recommended version ... yes
Repo umask is 0007 in .gitolite.rc? ... yes
Allow all Git config keys in .gitolite.rc ... yes
Config directory exists? ... yes
Config directory owned by git:git ... yes
Config directory access is drwxr-x---? ... yes
Repo base directory exists? ... yes
Repo base directory is a symlink? ... no
Repo base owned by git:git? ... yes
Repo base access is drwxrws---? ... yes
Can clone gitolite-admin? ... Warning: Permanently added 'localhost' (ECDSA) to the list of known hosts.
yes
Can commit to gitolite-admin? ... yes
post-receive hook exists? ... yes
post-receive hook up-to-date? ... yes
post-receive hooks in repos are links: ...
Greg / FuzzyLogic ... ok
Greg / TDCrypto-Signature ... ok
Greg / AirDMX ... ok
Greg / AIHM-TP1 ... ok
Greg / AirDMX-Xcode ... repository is empty
Git config in repos: ...
Greg / FuzzyLogic ... ok
Greg / TDCrypto-Signature ... ok
Greg / AirDMX ... ok
Greg / AIHM-TP1 ... ok
Greg / AirDMX-Xcode ... repository is empty
Checking Gitolite ... Finished
Checking Sidekiq ...
Running? ... yes
Checking Sidekiq ... Finished
Checking GitLab ...
Database config exists? ... yes
Database is SQLite ... no
All migrations up? ... yes
GitLab config exists? ... yes
GitLab config outdated? ... no
Log directory writable? ... yes
Tmp directory writable? ... yes
Init script exists? ... yes
Init script up-to-date? ... yes
Projects have satellites? ...
Greg / FuzzyLogic ... no
Try fixing it:
sudo -u gitlab -H bundle exec rake gitlab:satellites:create RAILS_ENV=production
If necessary, remove the tmp/repo_satellites directory ...
... and rerun the above command
For more information see:
doc/raketasks/maintenance.md
Please fix the error above and rerun the checks.
Greg / TDCrypto-Signature ... no
Try fixing it:
sudo -u gitlab -H bundle exec rake gitlab:satellites:create RAILS_ENV=production
If necessary, remove the tmp/repo_satellites directory ...
... and rerun the above command
For more information see:
doc/raketasks/maintenance.md
Please fix the error above and rerun the checks.
Greg / AirDMX ... no
Try fixing it:
sudo -u gitlab -H bundle exec rake gitlab:satellites:create RAILS_ENV=production
If necessary, remove the tmp/repo_satellites directory ...
... and rerun the above command
For more information see:
doc/raketasks/maintenance.md
Please fix the error above and rerun the checks.
Greg / AIHM-TP1 ... no
Try fixing it:
sudo -u gitlab -H bundle exec rake gitlab:satellites:create RAILS_ENV=production
If necessary, remove the tmp/repo_satellites directory ...
... and rerun the above command
For more information see:
doc/raketasks/maintenance.md
Please fix the error above and rerun the checks.
Greg / AirDMX-Xcode ... can't create, repository is empty
Checking GitLab ... Finished
rake aborted!
Don't know how to build task 'return'
(See full trace by running task with --trace)
By Administrator on 2013-03-20T07:23:01 (imported from GitLab project)
By Administrator on 2013-03-20T07:23:01 (imported from GitLab)
On GitLab 6.6.2 I had the issue on a repository that was (in order):
Imported from a bare git repository folder via sudo -u $GITLAB_USER -H bundle exec rake gitlab:import:repos RAILS_ENV=production
Deleted via web interface
Imported another time (git folder content had changed since) via sudo -u $GITLAB_USER -H bundle exec rake gitlab:import:repos RAILS_ENV=production
From there I couldn't commit changes via web interface nor open merge request from forks (forking was working, so was commits to theses forks).
I managed to get it fixed by running (from /home/git/gitlab):
sudo -u $GITLAB_USER -H bundle exec rake gitlab:check RAILS_ENV=production
which found an issue on the non-working repository and suggested to run:
sudo -u $GITLAB_USER -H bundle exec rake gitlab:satellites:create RAILS_ENV=production
This one seems to have done things on the say repo.
Running sudo -u $GITLAB_USER -H bundle exec rake gitlab:check RAILS_ENV=production once more time shown no errors.
And commits/merge on the repository were working again.
(Not sure the fact it was imported once then deleted changes anything in the issue but I rather note it).