mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-27 11:54:12 -05:00
15 lines
288 B
Ruby
15 lines
288 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module HostRedHat
|
|
class Plugin < Vagrant.plugin("2")
|
|
name "Red Hat host"
|
|
description "Red Hat host support."
|
|
|
|
host("redhat") do
|
|
require File.expand_path("../host", __FILE__)
|
|
Host
|
|
end
|
|
end
|
|
end
|
|
end
|