I'm using vagrant+chef. My chef cookbooks worked perfectly. Then I installed vagrant-berkshelf plugin and from that moment I could not use own cookbooks. Berkshelf overrides cookbooks directory and chef does not see my cookbooks when I use them. My config is like this:
config.berkshelf.enabled = true
config.vm.provision :chef_solo do |chef|
chef.add_recipe "qbaka-frontend"
end
With this configuration chef works only with cookbooks specified in Berksfile
but can't see my cookbooks in cookbooks
directory.
How can I work simultaneously with my & Berkshelf's cookbooks?