diff --git a/plugins/commands/destroy/command.rb b/plugins/commands/destroy/command.rb index 141bfd38b..a4799cf9b 100644 --- a/plugins/commands/destroy/command.rb +++ b/plugins/commands/destroy/command.rb @@ -10,7 +10,7 @@ module VagrantPlugins options[:force] = false opts = OptionParser.new do |o| - o.banner = "Usage: vagrant destroy [options] [name]" + o.banner = "Usage: vagrant destroy [options] [name|id]" o.separator "" o.separator "Options:" o.separator "" diff --git a/plugins/commands/halt/command.rb b/plugins/commands/halt/command.rb index 224ce0e6d..4ff733d95 100644 --- a/plugins/commands/halt/command.rb +++ b/plugins/commands/halt/command.rb @@ -12,7 +12,7 @@ module VagrantPlugins options[:force] = false opts = OptionParser.new do |o| - o.banner = "Usage: vagrant halt [options] [name]" + o.banner = "Usage: vagrant halt [options] [name|id]" o.separator "" o.separator "Options:" o.separator "" diff --git a/plugins/commands/package/command.rb b/plugins/commands/package/command.rb index 3bb2cf563..d1449b854 100644 --- a/plugins/commands/package/command.rb +++ b/plugins/commands/package/command.rb @@ -11,7 +11,7 @@ module VagrantPlugins options = {} opts = OptionParser.new do |o| - o.banner = "Usage: vagrant package [options] [name]" + o.banner = "Usage: vagrant package [options] [name|id]" o.separator "" o.separator "Options:" o.separator "" diff --git a/plugins/commands/port/command.rb b/plugins/commands/port/command.rb index af35def4b..dc27e43af 100644 --- a/plugins/commands/port/command.rb +++ b/plugins/commands/port/command.rb @@ -15,7 +15,7 @@ module VagrantPlugins options = {} opts = OptionParser.new do |o| - o.banner = "Usage: vagrant port [options] [name]" + o.banner = "Usage: vagrant port [options] [name|id]" o.separator "" o.separator "Options:" o.separator "" diff --git a/plugins/commands/rdp/command.rb b/plugins/commands/rdp/command.rb index 587b99c33..ea100ff69 100644 --- a/plugins/commands/rdp/command.rb +++ b/plugins/commands/rdp/command.rb @@ -11,7 +11,7 @@ module VagrantPlugins options = {} opts = OptionParser.new do |o| - o.banner = "Usage: vagrant rdp [options] [name] [-- extra args]" + o.banner = "Usage: vagrant rdp [options] [name|id] [-- extra args]" end # Parse out the extra args to send to the RDP client, which diff --git a/plugins/commands/ssh/command.rb b/plugins/commands/ssh/command.rb index a6fb9ef17..d136d33a1 100644 --- a/plugins/commands/ssh/command.rb +++ b/plugins/commands/ssh/command.rb @@ -11,7 +11,7 @@ module VagrantPlugins options = {} opts = OptionParser.new do |o| - o.banner = "Usage: vagrant ssh [options] [name] [-- extra ssh args]" + o.banner = "Usage: vagrant ssh [options] [name|id] [-- extra ssh args]" o.separator "" o.separator "Options:" o.separator "" diff --git a/plugins/commands/ssh_config/command.rb b/plugins/commands/ssh_config/command.rb index 320c8ace5..398a4276b 100644 --- a/plugins/commands/ssh_config/command.rb +++ b/plugins/commands/ssh_config/command.rb @@ -15,7 +15,7 @@ module VagrantPlugins options = {} opts = OptionParser.new do |o| - o.banner = "Usage: vagrant ssh-config [options] [name]" + o.banner = "Usage: vagrant ssh-config [options] [name|id]" o.separator "" o.separator "Options:" o.separator "" diff --git a/plugins/commands/status/command.rb b/plugins/commands/status/command.rb index 8a754eee3..7b3229b00 100644 --- a/plugins/commands/status/command.rb +++ b/plugins/commands/status/command.rb @@ -9,7 +9,7 @@ module VagrantPlugins def execute opts = OptionParser.new do |o| - o.banner = "Usage: vagrant status [name]" + o.banner = "Usage: vagrant status [name|id]" end # Parse the options diff --git a/plugins/commands/suspend/command.rb b/plugins/commands/suspend/command.rb index 9661ca792..c93779230 100644 --- a/plugins/commands/suspend/command.rb +++ b/plugins/commands/suspend/command.rb @@ -9,7 +9,7 @@ module VagrantPlugins def execute opts = OptionParser.new do |o| - o.banner = "Usage: vagrant suspend [name]" + o.banner = "Usage: vagrant suspend [name|id]" end # Parse the options diff --git a/plugins/commands/up/command.rb b/plugins/commands/up/command.rb index 5bcb79246..df9d2f5f7 100644 --- a/plugins/commands/up/command.rb +++ b/plugins/commands/up/command.rb @@ -22,7 +22,7 @@ module VagrantPlugins options[:provision_ignore_sentinel] = false opts = OptionParser.new do |o| - o.banner = "Usage: vagrant up [options] [name]" + o.banner = "Usage: vagrant up [options] [name|id]" o.separator "" o.separator "Options:" o.separator "" 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/).