From ce33b3d114dff630277c7179a44f7df42c31a13f Mon Sep 17 00:00:00 2001 From: Kammy Date: Tue, 12 Apr 2016 20:45:10 +0900 Subject: [PATCH] update cmd format --- website/source/docs/cli/destroy.html.md | 2 +- website/source/docs/cli/halt.html.md | 2 +- website/source/docs/cli/package.html.md | 2 +- website/source/docs/cli/port.html.md | 2 +- website/source/docs/cli/provision.html.md | 2 +- website/source/docs/cli/reload.html.md | 2 +- website/source/docs/cli/resume.html.md | 2 +- website/source/docs/cli/ssh.html.md | 2 +- website/source/docs/cli/ssh_config.html.md | 2 +- website/source/docs/cli/status.html.md | 2 +- website/source/docs/cli/suspend.html.md | 2 +- website/source/docs/cli/up.html.md | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/website/source/docs/cli/destroy.html.md b/website/source/docs/cli/destroy.html.md index 62571549d..271d61fae 100644 --- a/website/source/docs/cli/destroy.html.md +++ b/website/source/docs/cli/destroy.html.md @@ -9,7 +9,7 @@ description: |- # Destroy -**Command: `vagrant destroy`** +**Command: `vagrant destroy [name|id]`** This command stops the running machine Vagrant is managing and destroys all resources that were created during the machine creation process. diff --git a/website/source/docs/cli/halt.html.md b/website/source/docs/cli/halt.html.md index 5925ee219..9b77d68e0 100644 --- a/website/source/docs/cli/halt.html.md +++ b/website/source/docs/cli/halt.html.md @@ -9,7 +9,7 @@ description: |- # Halt -**Command: `vagrant halt`** +**Command: `vagrant halt [name|id]`** This command shuts down the running machine Vagrant is managing. diff --git a/website/source/docs/cli/package.html.md b/website/source/docs/cli/package.html.md index 1dd310fab..af6de256a 100644 --- a/website/source/docs/cli/package.html.md +++ b/website/source/docs/cli/package.html.md @@ -9,7 +9,7 @@ description: |- # Package -**Command: `vagrant package`** +**Command: `vagrant package [name|id]`** This packages a currently running _VirtualBox_ environment into a re-usable [box](/docs/boxes.html). This command can only be used with diff --git a/website/source/docs/cli/port.html.md b/website/source/docs/cli/port.html.md index 1c08cb684..b0cb2204e 100644 --- a/website/source/docs/cli/port.html.md +++ b/website/source/docs/cli/port.html.md @@ -9,7 +9,7 @@ description: |- # Port -**Command: `vagrant port`** +**Command: `vagrant port [name|id]`** The port command displays the full list of guest ports mapped to the host machine ports: diff --git a/website/source/docs/cli/provision.html.md b/website/source/docs/cli/provision.html.md index 621571d5b..bc19c6168 100644 --- a/website/source/docs/cli/provision.html.md +++ b/website/source/docs/cli/provision.html.md @@ -9,7 +9,7 @@ description: |- # Provision -**Command: `vagrant provision`** +**Command: `vagrant provision [vm-name]`** Runs any configured [provisioners](/docs/provisioning/) against the running Vagrant managed machine. diff --git a/website/source/docs/cli/reload.html.md b/website/source/docs/cli/reload.html.md index 199e3c1dd..587d0825c 100644 --- a/website/source/docs/cli/reload.html.md +++ b/website/source/docs/cli/reload.html.md @@ -9,7 +9,7 @@ description: |- # Reload -**Command: `vagrant reload`** +**Command: `vagrant reload [name|id]`** The equivalent of running a [halt](/docs/cli/halt.html) followed by an [up](/docs/cli/up.html). diff --git a/website/source/docs/cli/resume.html.md b/website/source/docs/cli/resume.html.md index 290457006..ac05666d9 100644 --- a/website/source/docs/cli/resume.html.md +++ b/website/source/docs/cli/resume.html.md @@ -10,7 +10,7 @@ description: |- # Resume -**Command: `vagrant resume`** +**Command: `vagrant resume [name|id]`** This resumes a Vagrant managed machine that was previously suspended, perhaps with the [suspend command](/docs/cli/suspend.html). diff --git a/website/source/docs/cli/ssh.html.md b/website/source/docs/cli/ssh.html.md index 9927f7fbc..8b2b73612 100644 --- a/website/source/docs/cli/ssh.html.md +++ b/website/source/docs/cli/ssh.html.md @@ -9,7 +9,7 @@ description: |- # SSH -**Command: `vagrant ssh`** +**Command: `vagrant ssh [name|id] [-- extra_ssh_args]`** This will SSH into a running Vagrant machine and give you access to a shell. diff --git a/website/source/docs/cli/ssh_config.html.md b/website/source/docs/cli/ssh_config.html.md index 497e1c339..b617a3001 100644 --- a/website/source/docs/cli/ssh_config.html.md +++ b/website/source/docs/cli/ssh_config.html.md @@ -9,7 +9,7 @@ description: |- # SSH Config -**Command: `vagrant ssh-config`** +**Command: `vagrant ssh-config [name|id]`** This will output valid configuration for an SSH config file to SSH into the running Vagrant machine from `ssh` directly (instead of diff --git a/website/source/docs/cli/status.html.md b/website/source/docs/cli/status.html.md index a9ebd4dd5..48384453f 100644 --- a/website/source/docs/cli/status.html.md +++ b/website/source/docs/cli/status.html.md @@ -9,7 +9,7 @@ description: |- # Status -**Command: `vagrant status`** +**Command: `vagrant status [name|id]`** This will tell you the state of the machines Vagrant is managing. diff --git a/website/source/docs/cli/suspend.html.md b/website/source/docs/cli/suspend.html.md index 2bfe04863..5933331ab 100644 --- a/website/source/docs/cli/suspend.html.md +++ b/website/source/docs/cli/suspend.html.md @@ -9,7 +9,7 @@ description: |- # Suspend -**Command: `vagrant suspend`** +**Command: `vagrant suspend [name|id]`** This suspends the guest machine Vagrant is managing, rather than fully [shutting it down](/docs/cli/halt.html) or [destroying it](/docs/cli/destroy.html). diff --git a/website/source/docs/cli/up.html.md b/website/source/docs/cli/up.html.md index 069bccaef..d654ab6f9 100644 --- a/website/source/docs/cli/up.html.md +++ b/website/source/docs/cli/up.html.md @@ -9,7 +9,7 @@ description: |- # Up -**Command: `vagrant up`** +**Command: `vagrant up [name|id]`** This command creates and configures guest machines according to your [Vagrantfile](/docs/vagrantfile/).