2025-12-22 06:16:17 -05:00
|
|
|
# Copyright IBM Corp. 2010, 2025
|
2023-08-10 16:53:25 -04:00
|
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
|
|
2013-02-02 20:12:46 -05:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
|
module CommandPlugin
|
|
|
|
|
class Plugin < Vagrant.plugin("2")
|
|
|
|
|
name "plugin command"
|
|
|
|
|
description <<-DESC
|
|
|
|
|
This command helps manage and install plugins within the
|
|
|
|
|
Vagrant environment.
|
|
|
|
|
DESC
|
|
|
|
|
|
|
|
|
|
command("plugin") do
|
|
|
|
|
require File.expand_path("../command/root", __FILE__)
|
|
|
|
|
Command::Root
|
|
|
|
|
end
|
|
|
|
|
end
|
2013-02-02 21:42:04 -05:00
|
|
|
|
|
|
|
|
autoload :Action, File.expand_path("../action", __FILE__)
|
2013-02-02 20:12:46 -05:00
|
|
|
end
|
|
|
|
|
end
|