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,7 +21,15 @@ cd /home/git/gitlab
21 sudo -u git -H git pull origin 6-2-stable 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 ```bash 34 ```bash
27 cd /home/git/gitlab 35 cd /home/git/gitlab
@@ -38,12 +46,12 @@ sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production @@ -38,12 +46,12 @@ sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production
38 sudo -u git -H bundle exec rake cache:clear RAILS_ENV=production 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 sudo service gitlab start 51 sudo service gitlab start
44 sudo service nginx restart 52 sudo service nginx restart
45 53
46 -### 5. Check application status 54 +### 6. Check application status
47 55
48 Check if GitLab and its environment are configured correctly: 56 Check if GitLab and its environment are configured correctly:
49 57