Berksfile not found

I couldn't find Berksfile in my cookbook!!

.
├── attributes
│ └── default.rb
├── CHANGELOG.md
├── chefignore
├── kitchen.yml
├── LICENSE
├── metadata.rb
├── Policyfile.rb
├── README.md
├── recipes
│ ├── database.rb
│ ├── default.rb
│ └── web.rb
├── spec
│ ├── spec_helper.rb
│ └── unit
│ └── recipes
│ ├── database_spec.rb
│ ├── default_spec.rb
│ └── web_spec.rb
├── templates
│ └── default.conf.erb
└── test
└── integration
└── default
├── database_test.rb
├── default_test.rb
└── web_test.rb

It has a policy file so i am guessing that you used the generate command, either create berksfile setup yourself or you could try policyfile on this cookbook :slight_smile:

1 Like