Librarian-chef

Back to Production-Engineering/Chef

A bundler for chef-repo, helping to manage and vendor upstream cookbooks.

cookbook "ntp" # newest version, from default source
cookbook "timezone", "0.0.1"

cookbook "rvm",
:git => "https://github.com/fnichol/chef-rvm", # specific git repo
:ref => "v0.7.1" # branch, unspecified will be master

cookbook "cloudera",
:path => "vendor/cookbooks/cloudera-cookbook"
# any git source can use :path to find the cookbook subdirectory in the source repo
```