Mitchell Hashimoto 1d2beff649 Guests to V2
2012-11-06 21:14:45 -08:00

16 lines
292 B
Ruby

require "vagrant"
module VagrantPlugins
module GuestRedHat
class Plugin < Vagrant.plugin("2")
name "RedHat guest"
description "RedHat guest support."
guest("redhat") do
require File.expand_path("../guest", __FILE__)
Guest
end
end
end
end