rcbops / chef-cookbooks

RCB OPS - Chef Cookbooks
Other
118 stars 102 forks source link

[memcached-openstack / memcached] memcached is not set to start on reboot by memcached cookbook #861

Open breu opened 10 years ago

breu commented 10 years ago

memcached isn't set to start on a reboot. The memcached cookbook does this:

service 'memcached' do
  action :nothing
  supports :status => true, :start => true, :stop => true, :restart => true
end
[root@breu-centos-grizzly-ha-quantum-node3 ~]# chkconfig --list memcached
memcached       0:off   1:off   2:off   3:off   4:off   5:off   6:off

memcached is not monitored by monit.

breu commented 10 years ago

https://github.com/opscode-cookbooks/memcached/pull/28

breu commented 10 years ago

https://tickets.opscode.com/browse/COOK-4308

claco commented 10 years ago

For future me. The upstream cookbook requires yum >= 3 and we're pinned to the 2.x series due to the recipe changes in yup. To get this fix we have to either:

Depending on the strategy and time, this may or may not need back ported.