add application check commands

This commit is contained in:
Ben Bodenmiller 2014-08-04 12:56:08 -07:00
parent d4f5af820f
commit 6a412c9969
1 changed files with 19 additions and 0 deletions

View File

@ -69,3 +69,22 @@ mysql> \q
## 7. Start application
sudo service gitlab start
## 8. Check installation
```bash
# In 5-10 seconds lets check gitlab-shell
sudo -u git -H /home/git/gitlab-shell/bin/check
# Example of success output
# Check GitLab API access: OK
# Check directories and files:
# /home/git/repositories: OK
# /home/git/.ssh/authorized_keys: OK
# Now check gitlab instance
sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production
```