commands/powershell
This commit is contained in:
parent
8bbf6f56f4
commit
e34af86acf
|
@ -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
|
||||
|
|
|
@ -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
|
Loading…
Reference in New Issue