base.rb 688 B

123456789101112131415161718
  1. # Policyfile.rb - Describe how you want Chef Infra Client to build your system.
  2. #
  3. # For more information on the Policyfile feature, visit
  4. # https://docs.chef.io/policyfile/
  5. # A name that describes what the system you're building with Chef does.
  6. name 'base'
  7. # Where to find external cookbooks:
  8. default_source :supermarket
  9. default_source :chef_repo, './cookbooks'
  10. # run_list: chef-client will run these recipes in the order specified.
  11. run_list 'workstation::default'
  12. # Specify a custom source for a single cookbook:
  13. # cookbook 'example_cookbook', path: '../cookbooks/example_cookbook'
  14. cookbook 'etckeeper', git: 'https://github.com/jmauro/etckeeper-cookbook', branch: 'refactor_config'