Sha256: 37c2ae4d222a833dea6ae4ebb924fd392720e878824cdcadbd0027d54552d65e

Contents?: true

Size: 361 Bytes

Versions: 21

Compression:

Stored size: 361 Bytes

Contents

require "vagrant"

module VagrantPlugins
  module CommandWinRM
    class Plugin < Vagrant.plugin("2")
      name "winrm command"
      description <<-DESC
      The `winrm` command executes commands on a machine via WinRM
      DESC

      command("winrm") do
        require File.expand_path("../command", __FILE__)
        Command
      end
    end
  end
end

Version data entries

21 entries across 21 versions & 3 rubygems

Version Path
vagrant-unbundled-2.2.0.0 plugins/commands/winrm/plugin.rb