0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

php cookbookでinstall_methodをsourceにするとCompile Errorになる

Last updated at Posted at 2015-01-25

Chef公式の php cookbookというのがありまして、

node['php']['install_method']を"source"に設定すればPHPをソースからコンパイル・インストールできるという話なのですが、やってみたらエラーが出ました。

Compiling Cookbooks...

================================================================================
Recipe Compile Error
================================================================================

Chef::Exceptions::RecipeNotFound
--------------------------------
could not find recipe client for cookbook mysql

原因

php cookbookがmysql::clientというレシピを呼び出そうとしてるのに、mysql cookbookの中にはclientというレシピが存在しない。

対処法

このパッチをあてる
https://github.com/opscode-cookbooks/php/pull/110/files

感想

  • 公式のmasterがバグっている
  • PullRequestが来ているのに放置
  • mysql cookbookも自社で開発しているのに、後方互換やバージョン整合性を考慮していない

どうしてこうなった...

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?