I have a Vagrant system up and running and I want to apply a change to it which is as little as changing one of the forwarding rules.
From this page:
Forwarded ports are applied during
vagrant up
like any other configuration. But if you already have a running system, callingvagrant reload
will apply them without re-importing and re-building everything.Note that forwarding ports requires a virtual machine restart since VirtualBox won’t pick up on the forwarded ports until it is completely restarted.
Sounds exactly like what I want! But if I try a vagrant reload
all of my Chef recipes are reloaded and since the full process takes about half an hour, I have to go to the kitchen and grab the nth cup of coffee.
Is there any way to apply Vagrantfile changes on a running system without going trough the whole provisioning process? I cannot drink so much coffee.