Commit db3d6cbfffc4e757a0e8f69bc7c35fb2e1be6856

Authored by Antonio Terceiro
1 parent ed8f1c23

integration_server: make run_list more readable

Showing 1 changed file with 8 additions and 1 deletions   Show diff stats
config/roles/integration_server.rb
... ... @@ -3,4 +3,11 @@ description "Server that runs COLAB (user authentication, visual integration and
3 3  
4 4 # TODO colab and mailman-api should be able to run in separate hosts at some
5 5 # point in the future
6   -run_list 'recipe[mailman-api]', 'recipe[mailman]', 'recipe[mailman::webui]', 'recipe[colab]', 'recipe[basics::nginx]', 'recipe[colab::nginx]'
  6 +run_list *[
  7 + 'recipe[mailman-api]',
  8 + 'recipe[mailman]',
  9 + 'recipe[mailman::webui]',
  10 + 'recipe[colab]',
  11 + 'recipe[basics::nginx]',
  12 + 'recipe[colab::nginx]',
  13 +]
... ...