厨师名单没有这样的食谱

时间:2018-04-06 18:30:52

标签: chef chef-recipe

我用厨师创建了一本食谱,当我使用runlist时我有这个错误

Missing Cookbooks:
------------------
No such cookbook: apache

我像这样创建食谱

chef generate cookbook apache 

在我的server.rb中我有这个

package 'httpd' do
  action :install
end

我尝试将我的命令行写成多个鹰派

sudo chef-client -z --runlist recipe["apache::server"]
sudo chef-client -z --runlist "recipe[apache::server]"
sudo chef-client -z --runlist ["apache::server"] 
sudo chef-client -z --runlist "[apache::server]"
sudo chef-client -z --runlist "apache::server"

但我仍有此错误

================================================================================
Error Resolving Cookbooks for Run List:
================================================================================

Missing Cookbooks:
------------------
No such cookbook: apache

Expanded Run List:
------------------
* apache::server

System Info:
------------
chef_version=13.8.5
platform=centos
platform_version=7.1.1503
ruby=ruby 2.4.3p205 (2017-12-14 revision 61247) [x86_64-linux]
program_name=chef-client worker: ppid=23940;start=18:20:14;
executable=/opt/chefdk/bin/chef-client

当我在没有rulist的情况下运行命令时

sudo chef-client -z cookbook/apache/recipes/server.rb

它完美地运作

树命令看起来像这样

├── cookbook
│   ├── apache
│   │   ├── Berksfile
│   │   ├── chefignore
│   │   ├── LICENSE
│   │   ├── metadata.rb
│   │   ├── nodes [error opening dir]
│   │   ├── README.md
│   │   ├── recipes
│   │   │   ├── default.rb
│   │   │   └── server.rb
│   │   ├── spec
│   │   │   ├── spec_helper.rb
│   │   │   └── unit
│   │   │       └── recipes
│   │   │           └── default_spec.rb
│   │   └── test
│   │       └── integration
│   │           └── default
│   │               └── default_test.rb
│   └── nodes [error opening dir]
└── nodes [error opening dir]

1 个答案:

答案 0 :(得分:2)

这是因为您的食谱文件名为cookbook并重命名为cookbooks