Commit 27fe6cbe137cbc63865740b97840a9a7386b73b7

Authored by Jacob Vosmaer
1 parent 186e8ad9

Include gitlab-shell in patch update doc

Showing 1 changed file with 11 additions and 3 deletions   Show diff stats
doc/update/patch_versions.md
... ... @@ -21,7 +21,15 @@ cd /home/git/gitlab
21 21 sudo -u git -H git pull origin 6-2-stable
22 22 ```
23 23  
24   -### 3. Install libs, migrations, etc.
  24 +### 4. Update gitlab-shell if necessary
  25 +
  26 +```bash
  27 +cd /home/git/gitlab-shell
  28 +sudo -u git -H git fetch
  29 +sudo -u git -H git checkout v1.7.4
  30 +```
  31 +
  32 +### 4. Install libs, migrations, etc.
25 33  
26 34 ```bash
27 35 cd /home/git/gitlab
... ... @@ -38,12 +46,12 @@ sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production
38 46 sudo -u git -H bundle exec rake cache:clear RAILS_ENV=production
39 47 ```
40 48  
41   -### 4. Start application
  49 +### 5. Start application
42 50  
43 51 sudo service gitlab start
44 52 sudo service nginx restart
45 53  
46   -### 5. Check application status
  54 +### 6. Check application status
47 55  
48 56 Check if GitLab and its environment are configured correctly:
49 57  
... ...