Policyfile.rb 506 B

12345678910111213141516
  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 'gateway'
  7. # Where to find external cookbooks:
  8. default_source :supermarket
  9. # run_list: chef-client will run these recipes in the order specified.
  10. run_list 'gateway::default'
  11. # Specify a custom source for a single cookbook:
  12. cookbook 'gateway', path: '.'