jesseadams / sphinx-cookbook

Chef cookbook for Sphinx Search (searchd)
14 stars 27 forks source link

Does not work with new version of mysql cookbook #45

Open Denis-Mak opened 8 years ago

Denis-Mak commented 8 years ago

Cookbook mysql moved from recepies to LWRP, that is why in default.rb you need to change include_recipe "mysql::client" if node[:sphinx][:use_mysql]

to something like this:

mysql_client 'default' do
  action :create
  only_if {node[:sphinx][:use_mysql]}
end
brchristian commented 8 years ago

:+1: Same here

brchristian commented 8 years ago

Looks to me like PR #42 addresses this...unfortunately it appears to be unmerged in over 6 months...