vagrant/plugins/commands/powershell/plugin.rb

35 lines
872 B
Ruby
Raw Normal View History

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
require "vagrant"
module VagrantPlugins
module CommandPS
autoload :Errors, File.expand_path("../errors", __FILE__)
class Plugin < Vagrant.plugin("2")
2015-11-18 13:46:17 -05:00
name "powershell command"
description <<-DESC
2015-11-18 13:46:17 -05:00
The powershell command opens a remote PowerShell session to the
machine if it supports powershell remoting.
DESC
2015-11-18 13:46:17 -05:00
command("powershell") do
2015-06-05 07:17:56 -04:00
require_relative "command"
init!
Command
end
protected
def self.init!
return if defined?(@_init)
2015-06-05 03:11:06 -04:00
I18n.load_path << File.expand_path("templates/locales/command_ps.yml", Vagrant.source_root)
2018-09-05 14:00:45 -04:00
I18n.load_path << File.expand_path("templates/locales/comm_winrm.yml", Vagrant.source_root)
I18n.reload!
@_init = true
end
end
end
end