Commit e5302b624172930290bccada7466c6ba5d67c87d

Authored by Paulo Tada
Committed by Rafael Manzo
1 parent 53123fef
Exists in mezuro_cookbook

Adding recipes to roles

Recipes adding:
- postgresql::mezuro > database_server
- mezuro::kalibro_configurations > integration_server
- mezuro::prezento > integration_server
- mezuro::kalibro_processor > mezuro_server

Signed-off-by: Diego Araújo <diegoamc90@gmail.com>
roles/database_server.rb
... ... @@ -6,4 +6,5 @@ run_list *[
6 6 'recipe[postgresql::colab]', # must come before the other apps
7 7 'recipe[postgresql::noosfero]',
8 8 'recipe[postgresql::gitlab]',
  9 + 'recipe[postgresql::mezuro]',
9 10 ]
... ...
roles/integration_server.rb
... ... @@ -13,4 +13,6 @@ run_list *[
13 13 'recipe[colab]',
14 14 'recipe[colab::nginx]',
15 15 'recipe[backup]',
  16 + 'recipe[mezuro::kalibro_configurations]',
  17 + 'recipe[mezuro::prezento]'
16 18 ]
... ...
roles/mezuro_server.rb
1 1 name 'mezuro_server'
2 2 description 'Mezuro server'
3   -run_list 'recipe[mezuro::kalibro]'
  3 +run_list 'recipe[mezuro::kalibro_processor]'
... ...