Commit 9d24e193aae0b06459267f6099b9be7fe49afb94

Authored by David Silva
Committed by Sergio Oliveira
1 parent a79f2831

Adds upgrade task for gitlab

Showing 1 changed file with 5 additions and 1 deletions   Show diff stats
cookbooks/gitlab/recipes/default.rb
... ... @@ -4,7 +4,11 @@ if node['platform'] == 'centos'
4 4 end
5 5 end
6 6  
7   -package 'gitlab'
  7 +package 'gitlab' do
  8 + action :upgrade
  9 + notifies :restart, 'service[gitlab]'
  10 +end
  11 +
8 12  
9 13 template '/etc/gitlab/database.yml' do
10 14 owner 'root'
... ...