LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

vagrant-resume

Resume a suspended Vagrant machine

TLDR

Resume the default suspended VM
$ vagrant resume
copy
Resume a specific VM by name or ID
$ vagrant resume [name|id]
copy
Resume and run provisioners afterward
$ vagrant resume --provision
copy
Resume and skip all provisioners
$ vagrant resume --no-provision
copy

SYNOPSIS

vagrant resume [options] [name]

DESCRIPTION

vagrant resume brings a suspended Vagrant machine back online. It restores the VM state from the point when it was suspended with vagrant suspend. Resuming is faster than a full boot from a halted state because it restores from a saved memory snapshot rather than performing a cold start. If the machine is not in a suspended state, this command has no effect.

PARAMETERS

--provision

Run provisioners.
--no-provision
Skip provisioners.

SEE ALSO

Copied to clipboard
Kai