Mitchell Hashimoto 6df6f6764f Remove plugin activation. It really isn't necessary.
It was only used in a couple places and it isn't necessary since you can
do the loading within the actual blocks themselves.
2012-11-03 20:29:34 -07:00

16 lines
292 B
Ruby

require "vagrant"
module VagrantPlugins
module GuestFedora
class Plugin < Vagrant.plugin("1")
name "Fedora guest"
description "Fedora guest support."
guest("fedora") do
require File.expand_path("../guest", __FILE__)
Guest
end
end
end
end