summaryrefslogtreecommitdiff
path: root/doc/raketasks/maintenance.md
diff options
context:
space:
mode:
authorJacob Vosmaer <contact@jacobvosmaer.nl>2014-06-23 10:38:22 +0200
committerJacob Vosmaer <contact@jacobvosmaer.nl>2014-06-23 10:38:22 +0200
commitffece96dd13fc99e24d65f2a374572c218c1f892 (patch)
tree5c965cd879f5472f515e6657d5618a3c6bd0d319 /doc/raketasks/maintenance.md
parent73c1030da1318284495288461210e8d145aa7181 (diff)
downloadgitlab-ce-ffece96dd13fc99e24d65f2a374572c218c1f892.tar.gz
Spell out rake tasks for omnibus-gitlab
Diffstat (limited to 'doc/raketasks/maintenance.md')
-rw-r--r--doc/raketasks/maintenance.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/raketasks/maintenance.md b/doc/raketasks/maintenance.md
index 30276dd7629..3339dfb03ac 100644
--- a/doc/raketasks/maintenance.md
+++ b/doc/raketasks/maintenance.md
@@ -5,6 +5,10 @@
This command gathers information about your GitLab installation and the System it runs on. These may be useful when asking for help or reporting issues.
```
+# omnibus-gitlab
+sudo gitlab-rake gitlab:env:info
+
+# installation from source or cookbook
bundle exec rake gitlab:env:info RAILS_ENV=production
```
@@ -52,6 +56,10 @@ It will check that each component was setup according to the installation guide
You may also have a look at our [Trouble Shooting Guide](https://github.com/gitlabhq/gitlab-public-wiki/wiki/Trouble-Shooting-Guide).
```
+# omnibus-gitlab
+sudo gitlab-rake gitlab:check
+
+# installation from source or cookbook
bundle exec rake gitlab:check RAILS_ENV=production
```