I'm building a Vagrant VM off CentOS 6.5 with Chef Solo and Berkshelf. For some reason, when I try to install the 'htop' cookbook, I get this error:
================================================================================
Recipe Compile Error
================================================================================
Chef::Exceptions::RecipeNotFound
--------------------------------
could not find recipe repoforge for cookbook yum
Has anyone seen this kind of error? My Vagrantfile section looks like this:
config.vm.provision :chef_solo do |chef|
chef.add_recipe 'yum'
chef.add_recipe 'yum-epel'
chef.add_recipe 'git'
chef.add_recipe 'htop'
end
If I do the same thing but without the 'htop' recipe, it works fine. I even tried adding:
chef.add_recipe 'yum-repoforge'
I still get the same error.
Thoughts?
chef.add_recipe 'yum-repoforgecan't help, as a) it would beyum::repoforgeand furthermore the problem is that therepoforgerecipe is not contained in theyumcookbook. - StephenKing