diff --git a/CHANGELOG.md b/CHANGELOG.md index a5db527b2..80eb65a92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/plugins/commands/ps/command.rb b/plugins/commands/powershell/command.rb similarity index 100% rename from plugins/commands/ps/command.rb rename to plugins/commands/powershell/command.rb diff --git a/plugins/commands/ps/errors.rb b/plugins/commands/powershell/errors.rb similarity index 100% rename from plugins/commands/ps/errors.rb rename to plugins/commands/powershell/errors.rb diff --git a/plugins/commands/ps/plugin.rb b/plugins/commands/powershell/plugin.rb similarity index 81% rename from plugins/commands/ps/plugin.rb rename to plugins/commands/powershell/plugin.rb index b108658bc..325925115 100644 --- a/plugins/commands/ps/plugin.rb +++ b/plugins/commands/powershell/plugin.rb @@ -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 diff --git a/plugins/commands/ps/scripts/enable_psremoting.ps1 b/plugins/commands/powershell/scripts/enable_psremoting.ps1 similarity index 100% rename from plugins/commands/ps/scripts/enable_psremoting.ps1 rename to plugins/commands/powershell/scripts/enable_psremoting.ps1 diff --git a/plugins/commands/ps/scripts/reset_trustedhosts.ps1 b/plugins/commands/powershell/scripts/reset_trustedhosts.ps1 similarity index 100% rename from plugins/commands/ps/scripts/reset_trustedhosts.ps1 rename to plugins/commands/powershell/scripts/reset_trustedhosts.ps1