» Reload

Command: vagrant reload [name|id]

The equivalent of running a halt followed by anup.

This command is usually required for changes made in the Vagrantfile totake effect. After making any modifications to the Vagrantfile, a reloadshould be called.

The configured provisioners will not run again, by default. You can forcethe provisioners to re-run by specifying the —provision flag.

» Options

  • —provision - Force the provisioners to run.

  • —provision-with x,y,z - This will only run the given provisioners. Forexample, if you have a :shell and :chef_solo provisioner and runvagrant reload —provision-with shell, only the shell provisioner willbe run.