mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-11 13:47:22 +00:00
22 lines
533 B
Plaintext
22 lines
533 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# vagrant resume
|
|
|
|
> Resume a Vagrant managed machine that was previously suspended.
|
|
> More information: <https://developer.hashicorp.com/vagrant/docs/cli/resume>.
|
|
|
|
- Resume machine specified by name or id:
|
|
|
|
`vagrant resume {{name|id}}`
|
|
|
|
- Resume and run all configured provisioners:
|
|
|
|
`vagrant resume {{name|id}} --provision`
|
|
|
|
- Resume and specify which provisioners to re-run:
|
|
|
|
`vagrant resume {{name|id}} --provision-with {{provisioner}}`
|