Commit c3cfe25881a302aba9d4e37568c563015b3f0864

Authored by Sergio Oliveira
1 parent eaad492b

Install and start memcached for colab

Showing 1 changed file with 7 additions and 0 deletions   Show diff stats
cookbooks/colab/recipes/default.rb
  1 +
  2 +package 'memcached'
  3 +
  4 +service 'memcached' do
  5 + action [:enable, :start]
  6 +end
  7 +
1 8 if node['platform'] == 'centos'
2 9 cookbook_file '/etc/yum.repos.d/colab.repo' do
3 10 owner 'root'
... ...