mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-21 17:05:29 -05:00
18 lines
412 B
Ruby
18 lines
412 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module CommandProvider
|
|
class Plugin < Vagrant.plugin("2")
|
|
name "provider command"
|
|
description <<-DESC
|
|
The `provider` command is used to interact with the various providers
|
|
that are installed with Vagrant.
|
|
DESC
|
|
|
|
command("provider", primary: false) do
|
|
require_relative "command"
|
|
Command
|
|
end
|
|
end
|
|
end
|
|
end
|