diff options
author | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2013-08-09 14:46:25 +0200 |
---|---|---|
committer | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2013-08-09 14:56:15 +0200 |
commit | 6636c161fee6afd4c700ecbf2771b40eea268d61 (patch) | |
tree | 197b8df921e2190badffc7a1b86f6359e662f7fc /doc/update/5.3-to-5.4.md | |
parent | ebf11981e07d334ffe902fd04ec418e602789bd9 (diff) | |
download | gitlab-ce-6636c161fee6afd4c700ecbf2771b40eea268d61.tar.gz |
Update to gitlab-shell 1.5.0 during 5.3-5.4 update
Diffstat (limited to 'doc/update/5.3-to-5.4.md')
-rw-r--r-- | doc/update/5.3-to-5.4.md | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/doc/update/5.3-to-5.4.md b/doc/update/5.3-to-5.4.md index 774e4439314..5fba0e26afa 100644 --- a/doc/update/5.3-to-5.4.md +++ b/doc/update/5.3-to-5.4.md @@ -22,7 +22,15 @@ sudo -u git -H git fetch sudo -u git -H git checkout 5-4-stable ``` -### 3. Install libs, migrations, etc. +### 3. Update gitlab-shell + +```bash +cd /home/git/gitlab-shell +sudo -u git -H git fetch +sudo -u git -H git checkout v1.5.0 +``` + +### 4. Install libs, migrations, etc. ```bash cd /home/git/gitlab @@ -38,12 +46,12 @@ sudo -u git -H bundle exec rake db:migrate RAILS_ENV=production sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production ``` -### 4. Update config files +### 5. Update config files * Make `/home/git/gitlab/config/gitlab.yml` same as https://github.com/gitlabhq/gitlabhq/blob/5-4-stable/config/gitlab.yml.example but with your settings. * Make `/home/git/gitlab/config/puma.rb` same as https://github.com/gitlabhq/gitlabhq/blob/5-4-stable/config/puma.rb.example but with your settings. -### 5. Update Init script +### 6. Update Init script ```bash sudo rm /etc/init.d/gitlab @@ -51,12 +59,12 @@ sudo curl --output /etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlabhq/5 sudo chmod +x /etc/init.d/gitlab ``` -### 6. Start application +### 7. Start application sudo service gitlab start sudo service nginx restart -### 7. Check application status +### 8. Check application status Check if GitLab and its environment are configured correctly: |