Commit 5f98853251cc4f5c7eada2e6694a5c718aeb7aa7

Authored by Jacob Vosmaer
1 parent 7071990c

Restart all services at the end of the upgrade

This is a simple way to make sure that if any services got upgraded in
the new package, we start actually running the upgraded service.
Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
@@ -32,8 +32,8 @@ sudo rpm -Uvh gitlab-6.9.y_xxx.rpm @@ -32,8 +32,8 @@ sudo rpm -Uvh gitlab-6.9.y_xxx.rpm
32 # Reconfigure GitLab (includes database migrations) 32 # Reconfigure GitLab (includes database migrations)
33 sudo gitlab-ctl reconfigure 33 sudo gitlab-ctl reconfigure
34 34
35 -# Start unicorn and sidekiq  
36 -sudo gitlab-ctl start 35 +# Restart all gitlab services
  36 +sudo gitlab-ctl restart
37 ``` 37 ```
38 38
39 Done! 39 Done!