Commit 47bdbe0c35df25aeb334ac5ff6f283003553f496

Authored by Antonio Terceiro
1 parent 32b65e7e

Install colab

cookbooks/colab/recipes/default.rb
... ... @@ -0,0 +1,12 @@
  1 +# TODO colab and mailman-api should be able to run in separate hosts at some
  2 +# point in the future
  3 +include_recipe 'mailman-api'
  4 +
  5 +if node['platform'] == 'centos'
  6 + cookbook_file '/etc/yum.repos.d/colab.repo' do
  7 + owner 'root'
  8 + mode 0644
  9 + end
  10 +end
  11 +
  12 +package 'colab'
... ...
cookbooks/mailman-api/recipes/default.rb 0 → 100644
... ... @@ -0,0 +1,8 @@
  1 +if node['platform'] == 'centos'
  2 + cookbook_file '/etc/yum.repos.d/mailman-api.repo' do
  3 + owner 'root'
  4 + mode 0644
  5 + end
  6 +end
  7 +
  8 +package 'mailman-api'
... ...