mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-03 20:39:27 -05:00
23 lines
460 B
Ruby
23 lines
460 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module GuestFedora
|
|
class Plugin < Vagrant.plugin("2")
|
|
name "Fedora guest"
|
|
description "Fedora guest support."
|
|
|
|
guest(:fedora, :redhat) do
|
|
require_relative "guest"
|
|
Guest
|
|
end
|
|
|
|
guest_capability(:fedora, :flavor) do
|
|
require_relative "cap/flavor"
|
|
Cap::Flavor
|
|
end
|
|
end
|
|
end
|
|
end
|