vagrant/plugins/commands/ps/plugin.rb

31 lines
682 B
Ruby
Raw Normal View History

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
machine if it supports powershell remoting.
DESC
command("ps") do
2015-06-05 07:11:06 +00:00
require_relative "../command"
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)
I18n.reload!
@_init = true
end
end
end
end