Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRiyad Preukschas <riyad@informatik.uni-bremen.de>2013-01-11 21:58:13 +0400
committerRiyad Preukschas <riyad@informatik.uni-bremen.de>2013-01-11 21:59:06 +0400
commitf0c4e94d7406cb30c77b1f3dd20f541a9398588a (patch)
tree46f9c5ff4bc950f0bee8883c8aae54e72c910980 /doc
parent97a4e1b86ace4b338bba345ea54166503fe0048d (diff)
Move checks after init script installation in docs
Diffstat (limited to 'doc')
-rw-r--r--doc/install/installation.md26
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/install/installation.md b/doc/install/installation.md
index 29ca7a812ca..6a7605cb36d 100644
--- a/doc/install/installation.md
+++ b/doc/install/installation.md
@@ -270,6 +270,18 @@ used for the `email.from` setting in `config/gitlab.yml`)
sudo -u gitlab -H bundle exec rake gitlab:app:setup RAILS_ENV=production
+## Install Init Script
+
+Download the init script (will be /etc/init.d/gitlab):
+
+ sudo wget https://raw.github.com/gitlabhq/gitlab-recipes/master/init.d/gitlab -P /etc/init.d/
+ sudo chmod +x /etc/init.d/gitlab
+
+Make GitLab start on boot:
+
+ sudo update-rc.d gitlab defaults 21
+
+
## Check Application Status
Check if GitLab and its environment is configured correctly:
@@ -283,19 +295,7 @@ To make sure you didn't miss anything run a more thorough check with:
If all items are green, then congratulations on successfully installing GitLab!
However there are still a few steps left.
-## Install Init Script
-
-Download the init script (will be /etc/init.d/gitlab):
-
- sudo wget https://raw.github.com/gitlabhq/gitlab-recipes/master/init.d/gitlab -P /etc/init.d/
- sudo chmod +x /etc/init.d/gitlab
-
-Make GitLab start on boot:
-
- sudo update-rc.d gitlab defaults 21
-
-
-Start your GitLab instance:
+## Start Your GitLab Instance
sudo service gitlab start
# or