Reputation: 5797
So I have Vagrant installed and running, in a directory I have some chef stuff. I notice when vagrant boots it runs all my chef recipes and cookbooks. But I am modifying behavior to and need to run chef while vagrant is running, is there a way to do that?
Upvotes: 0
Views: 762
Reputation: 3120
As documentation says, you must use:
vagrant provision
when you modify any cookbookvagrant reload
when you modify Vagrantfile
- it is equivalent to halt
+ up
Upvotes: 2