vagrant/plugins/commands/init/plugin.rb
oss-core-libraries-dashboard[bot] 614fcb0549
[COMPLIANCE] Update Copyright and License Headers (Batch 1 of 7) (#13765)
Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
2025-12-22 16:38:56 +05:30

21 lines
460 B
Ruby

# Copyright IBM Corp. 2010, 2025
# SPDX-License-Identifier: BUSL-1.1
require "vagrant"
module VagrantPlugins
module CommandInit
class Plugin < Vagrant.plugin("2")
name "init command"
description <<-DESC
The `init` command sets up your working directory to be a
Vagrant-managed environment.
DESC
command("init") do
require File.expand_path("../command", __FILE__)
Command
end
end
end
end