vagrant/plugins/commands/winrm_config/plugin.rb

18 lines
385 B
Ruby
Raw Normal View History

2018-10-04 20:13:27 +00:00
require "vagrant"
module VagrantPlugins
module CommandWinRMConfig
class Plugin < Vagrant.plugin("2")
name "winrm-config command"
description <<-DESC
The `winrm-config` command dumps WinRM configuration information
DESC
command("winrm-config") do
require File.expand_path("../command", __FILE__)
Command
end
end
end
end