vagrant init {box} |
Initialise a new VM in the current working directory. Specify a box name, or "base" will be used by default. |
vagrant status |
Shows the status of the Vagrant box(es) within the current working directory tree. |
vagrant up (--provision) |
Boots the Vagrant box. Including "–provision" also runs the "vagrant provision" command. |
vagrant reload (--provision) |
Reloads the Vagrant box. Including "--provision" also runs the "vagrant provision" command. |
vagrant provision |
Provision the Vagrant box using Puppet. |
vagrant suspend |
Suspend the Vagrant box. Use "vagrant up" to start the box again. |
vagrant halt (-f) |
Halt the Vagrant box. Use -f to forcefully shut down the box without prompting for confirmation. |
vagrant destroy (-f) |
Destroys a Vagrant box. Use -f to forcefully shut down the box without prompting for confirmation. |