Commit 5ee6094d1cc7b53fe209b84049d65c9e78d95a1c
Exists in
master
and in
89 other branches
Merge branch 'enable_memcached' into 'master'
Enable memcached Fixed chef to enable and start memcached service. See merge request !22
Showing
2 changed files
with
11 additions
and
0 deletions
Show diff stats
cookbooks/colab/recipes/default.rb
cookbooks/noosfero/recipes/default.rb
... | ... | @@ -65,6 +65,10 @@ service 'noosfero' do |
65 | 65 | action [:enable, :start] |
66 | 66 | end |
67 | 67 | |
68 | +service 'memcached' do | |
69 | + action [:enable, :start] | |
70 | +end | |
71 | + | |
68 | 72 | template '/etc/nginx/conf.d/noosfero.conf' do |
69 | 73 | owner 'root'; group 'root'; mode 0644 |
70 | 74 | source 'nginx.conf.erb' | ... | ... |