Commit 7222c912a9e9b9607bf4e7901f5f89ca05ca5bab

Authored by Sergio Oliveira
1 parent 83a29d52

Added missing include

Showing 1 changed file with 4 additions and 0 deletions   Show diff stats
puppet/modules/colab/manifests/init.pp
@@ -86,10 +86,14 @@ class colab ( @@ -86,10 +86,14 @@ class colab (
86 user => 'colab', 86 user => 'colab',
87 } 87 }
88 88
  89 + /* SPB specifics */
  90 + include nginx
  91 +
89 nginx::resource::location { 'gitlab': 92 nginx::resource::location { 'gitlab':
90 ensure => present, 93 ensure => present,
91 vhost => 'colab', 94 vhost => 'colab',
92 location => '/gitlab/assets/', 95 location => '/gitlab/assets/',
93 location_alias => '/opt/gitlab/embedded/service/gitlab-rails/public/assets/', 96 location_alias => '/opt/gitlab/embedded/service/gitlab-rails/public/assets/',
94 } 97 }
  98 + /* end - SPB specifics */
95 } 99 }