123456789101112131415161718192021 |
- # Policyfile.rb - Describe how you want Chef Infra Client to build your system.
- #
- # For more information on the Policyfile feature, visit
- # https://docs.chef.io/policyfile/
- # A name that describes what the system you're building with Chef does.
- name 'base'
- # Where to find external cookbooks:
- default_source :supermarket
- default_source :chef_repo, './cookbooks'
- # run_list: chef-client will run these recipes in the order specified.
- run_list [
- 'workstation::default',
- ]
- # Specify a custom source for a single cookbook:
- # cookbook 'example_cookbook', path: '../cookbooks/example_cookbook'
- cookbook 'etckeeper', git: 'https://github.com/jmauro/etckeeper-cookbook', branch: 'master-next'
- cookbook 'git', git: 'https://github.com/jmauro/git', branch: 'config_file_scope'
|