5

我正在尝试在厨师食谱中安装雾 gem,尽管 gem 安装发生在安装本机软件包之前,因此 gem 安装失败

package "libxslt-dev"
package "libxml2-dev"

chef_gem "fog"

这是输出

[Thu, 14 Mar 2013 13:04:30 +0000] INFO: Processing chef_gem[fog] action install (ebs4000::update_volumes line 23)
[Thu, 14 Mar 2013 13:04:52 +0000] ERROR: Running exception handlers
[Thu, 14 Mar 2013 13:04:52 +0000] FATAL: Saving node information to /var/cache/chef/failed-run-data.json
[Thu, 14 Mar 2013 13:04:52 +0000] ERROR: Exception handlers complete
[Thu, 14 Mar 2013 13:04:52 +0000] ERROR: Gem::Installer::ExtensionBuildError: chef_gem[fog] (cookbook::recipe line 4) had an error: Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

        /usr/bin/ruby1.8 extconf.rb
checking for libxml/parser.h... no
-----
libxml2 is missing.  please visit http://nokogiri.org/tutorials/installing_nokogiri.html for help with installing dependencies.
-----
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of
necessary libraries and/or headers.  Check the mkmf.log file for more
details.  You may need configuration options.

Provided configuration options:
    --with-opt-dir
    --without-opt-dir
    ...
    --with-pkg-config
    --without-pkg-config


Gem files will remain installed in /var/lib/gems/1.8/gems/nokogiri-1.5.6 for inspection.
Results logged to /var/lib/gems/1.8/gems/nokogiri-1.5.6/ext/nokogiri/gem_make.out

我知道厨师资源的通知属性,但仍然可以正常运行。

那么我如何才能真正强制执行顺序首先安装本机包,然后在同一运行中安装 gem。

注意:手动安装包不是一个选项,因为我们希望新节点完全自动化。

4

2 回答 2

7

为什么不尝试在资源收集阶段开始时安装依赖项,如此处所述:OPSCODE wiki: Run Resources from the Resource Collection

所以你的食谱看起来像:

xsltdev = package "libxslt-dev" do
   action :nothing
end

xmldev = package "libxml2-dev" do
   action :nothing
end

xsltdev.run_action(:install)
xmldev.run_action(:install)

chef_gem "fog"
于 2013-03-14T20:08:07.360 回答
0

看起来你已经在这样做了。食谱是按顺序执行的,所以你应该很好。

在您的日志中,您只显示从 Chef 尝试安装的那一点发生的事情fog。您是否验证过 lib 包的安装在此之前没有出现?你可能弄错了包名,或者你需要更新包管理器的缓存。

于 2013-03-15T02:23:51.230 回答