commands/powershell

This commit is contained in:
Mitchell Hashimoto 2015-11-18 10:46:17 -08:00
parent 8bbf6f56f4
commit e34af86acf
6 changed files with 5 additions and 3 deletions

View File

@ -2,6 +2,8 @@
FEATURES:
- **New Command: `vagrant powershell`**: For machines that support it,
this will open a PowerShell prompt.
- **Linked Clones**: VirtualBox and VMware providers now support
linked clones for very fast (millisecond) imports on up. [GH-4484]
- **Snapshots**: The `vagrant snapshot` command can be used to checkpoint

View File

@ -5,13 +5,13 @@ module VagrantPlugins
autoload :Errors, File.expand_path("../errors", __FILE__)
class Plugin < Vagrant.plugin("2")
name "ps command"
name "powershell command"
description <<-DESC
The ps command opens a remote PowerShell session to the
The powershell command opens a remote PowerShell session to the
machine if it supports powershell remoting.
DESC
command("ps") do
command("powershell") do
require_relative "command"
init!
Command