2012-04-19 05:20:45 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
2013-10-05 16:40:23 +00:00
|
|
|
module HostRedHat
|
2012-11-07 05:20:22 +00:00
|
|
|
class Plugin < Vagrant.plugin("2")
|
2013-10-05 16:40:23 +00:00
|
|
|
name "Red Hat host"
|
|
|
|
description "Red Hat host support."
|
2012-04-19 05:20:45 +00:00
|
|
|
|
2013-10-05 16:40:23 +00:00
|
|
|
host("redhat") do
|
2012-05-23 23:03:14 +00:00
|
|
|
require File.expand_path("../host", __FILE__)
|
|
|
|
Host
|
|
|
|
end
|
2012-04-19 05:20:45 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|