Chef - 没有名为windows_http_acl的资源或方法

时间:2015-06-09 22:39:16

标签: chef

我正在尝试在我的一本食谱中使用windows_http_acl lwrp。

当我尝试使用它时,我收到此错误。

================================================================================
  Recipe Compile Error in c:/chef/cache/cookbooks/foo/recipes/bar.rb
  ================================================================================

  NoMethodError
  -------------
  No resource or method named `windows_http_acl' for `Chef::Recipe "bar"'

  Cookbook Trace:
  ---------------
    c:/chef/cache/cookbooks/foo/recipes/bar.rb:26:in `from_file'

  Relevant File Content:
  ----------------------
  c:/chef/cache/cookbooks/foo/recipes/bar.rb:


   26>> windows_http_acl 'http://+:8080/' do
   27:    user "#{node['domain']}\\foobar"
   28:  end
   29:

我的模块metadata.rb

....

depends          'windows', '~> 1.37.0'
depends          'iis', '~> 4.1.1'
depends          'chef_handler'

opscode/windows metadata.rb

比较

My Berksfile

source "https://supermarket.chef.io"

metadata

cookbook 'windows', git: 'https://github.com/opscode-cookbooks/windows.git'    
cookbook 'iis', git: 'https://github.com/opscode-cookbooks/iis.git'

我的默认食谱

include_recipe 'windows'
include_recipe 'foo::bar'

我尝试使用调试运行Chef客户端,但遗憾的是没有透露任何信息。

我甚至尝试分叉opscode / windows cookbook并在metadata.rb文件中添加'provide windows_http_acl'语句。

version          '1.37.0'
supports         'windows'
source_url       "https://github.com/opscode-cookbooks/windows"
issues_url       "https://github.com/opscode-cookbooks/windows/issues"
depends          'chef_handler'

provides         'windows_http_acl'

是什么原因导致我的食谱无法找到windows_http_acl资源?我对厨师很陌生,所以也许我有一些简单的东西。

更新

我尝试删除berksfile.lock以确保它没有旧版本

DEPENDENCIES
  foo
    path: .
    metadata: true
  iis
    git: https://github.com/opscode-cookbooks/iis.git
    revision: 58fffd8eb30ac34cc99672995e12289556a4a074
  windows
    git: https://github.com/opscode-cookbooks/windows.git
    revision: b469294f7581863f8d76f8b0c0fbfb5dc2617983

GRAPH
  foo(0.x.x)
    chef_handler (>= 0.0.0)
    iis (~> 4.1.1)
    windows (~> 1.37.0)
  chef_handler (1.1.9)
  iis (4.1.1)
    windows (>= 1.34.6)
  windows (1.37.0)
    chef_handler (>= 0.0.0)

2 个答案:

答案 0 :(得分:2)

比其他答案更正确的版本

berks upload windows --force --no-freeze

这会强制上传,即使您可能会在之前的上传中将其冻结。这是运行预发布版本菜谱的一般问题。

答案 1 :(得分:0)

正如IRC上的coderanger所指出的那样。运行以下命令,发现我的厨师服务器中没有该资源。

knife cookbook show windows 1.37.0 providers

我删除了食谱并重新上传,现在列出了http_acl.rb资源。

knife cookbook delete windows
rm Berksfile.lock && berks install && berks upload