You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 26, 2017. It is now read-only.
Currently, I have the following in my Vagrantfile:
config.berkshelf.enabled = true
However, this causes Berkshelf to resolve and vendor cookbooks on every single run (which is a relatively expensive operation) even if the run isn't a provisioning run. I attempted to make the Berkshelf run dependent on whether or not provisioning would run by moving it into the config.vm.provision :chef_solo block, but this still results in:
==> default: Updating Vagrant's Berkshelf...
on each run.
Expected behavior is that Berkshelf will resolve dependencies and vendor cookbooks only on initial vagrant up or when running vagrant reload --provision.
The text was updated successfully, but these errors were encountered:
Currently, I have the following in my Vagrantfile:
However, this causes Berkshelf to resolve and vendor cookbooks on every single run (which is a relatively expensive operation) even if the run isn't a provisioning run. I attempted to make the Berkshelf run dependent on whether or not provisioning would run by moving it into the
config.vm.provision :chef_solo
block, but this still results in:on each run.
Expected behavior is that Berkshelf will resolve dependencies and vendor cookbooks only on initial
vagrant up
or when runningvagrant reload --provision
.The text was updated successfully, but these errors were encountered: