website/content/docs/cli/reload.mdx
⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️
[!IMPORTANT]
Documentation Update: Product documentation previously located in/websitehas moved to thehashicorp/web-unified-docsrepository, where all product documentation is now centralized. Please make contributions directly toweb-unified-docs, since changes to/websitein this repository will not appear on developer.hashicorp.com. ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️
Command: vagrant reload [name|id]
The equivalent of running a halt followed by an up.
This command is usually required for changes made in the Vagrantfile to
take effect. After making any modifications to the Vagrantfile, a reload
should be called.
The configured provisioners will not run again, by default. You can force
the provisioners to re-run by specifying the --provision flag.
--provision - Force the provisioners to run.
--provision-with x,y,z - This will only run the given provisioners. For
example, if you have a :shell and :chef_solo provisioner and run
vagrant reload --provision-with shell, only the shell provisioner will
be run.