21 lines
454 B
Ruby
21 lines
454 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
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
|