2014-08-27 19:17:30 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module CommandPS
|
|
|
|
autoload :Errors, File.expand_path("../errors", __FILE__)
|
|
|
|
|
|
|
|
class Plugin < Vagrant.plugin("2")
|
|
|
|
name "ps command"
|
|
|
|
description <<-DESC
|
2015-06-05 07:11:06 +00:00
|
|
|
The ps command opens a remote PowerShell session to the
|
2014-08-27 19:17:30 +00:00
|
|
|
machine if it supports powershell remoting.
|
|
|
|
DESC
|
|
|
|
|
|
|
|
command("ps") do
|
2015-06-05 11:17:56 +00:00
|
|
|
require_relative "command"
|
2014-08-27 19:17:30 +00:00
|
|
|
init!
|
|
|
|
Command
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def self.init!
|
|
|
|
return if defined?(@_init)
|
2015-06-05 07:11:06 +00:00
|
|
|
I18n.load_path << File.expand_path("templates/locales/command_ps.yml", Vagrant.source_root)
|
2014-08-27 19:17:30 +00:00
|
|
|
I18n.reload!
|
|
|
|
@_init = true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|