1

我有一个非常小的例子。1 个带有 1 个食谱和 1 个 ohai 插件文件的食谱,但在运行厨房时出现错误运行 berks/berks 安装或收敛

我确实安装了 ohai gem:

chefspec-ohai (0.2.0)
ohai (14.2.0)

该插件位于 ./files/default/apache_modules.rb 中:

Ohai.plugin :Apache do
  provides 'apache/modules'

  collect_data :default do
    apache(Mash.new)
    modules_cmd = shell_out('apachectl -t -D DUMP_MODULES')
    apache[:modules] = modules_cmd.stdout
  end
end

错误是:

Unable to satisfy constraints on package , which does not exist, due to solution constraint (apache = 0.1.0). Solution constraints that may result in a constraint on : [(apache = 0.1.0) -> ( >= 0.0.0)]
Missing artifacts:
Demand that cannot be met: (apache = 0.1.0)

注意第一行,包和逗号之间有一个空格。所以我不知道它在抱怨什么包裹。

我的食谱名为 apache,有 1 个配方 default.rb:

package 'httpd'

service 'httpd' do
  action [:start, :enable]
end

元数据.rb:

name 'apache'
maintainer 'The Authors'
maintainer_email 'you@example.com'
license 'All Rights Reserved'
description 'Installs/Configures apache'
long_description 'Installs/Configures apache'
version '0.1.0'
depends ohai

伯克斯文件:

source 'https://supermarket.chef.io'
metadata

我的 Berksfile 和 metadata.rb 都在 cookbooks/apache 目录中

建议?

谢谢,

安德鲁

4

1 回答 1

1

那应该是depends "ohai",它必须是一个字符串。

于 2018-07-20T21:05:24.870 回答