2012-04-19 00:38:20 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module GuestFreeBSD
|
|
|
|
autoload :Config, File.expand_path("../config", __FILE__)
|
2012-04-19 04:03:03 +00:00
|
|
|
autoload :Guest, File.expand_path("../guest", __FILE__)
|
2012-04-19 00:38:20 +00:00
|
|
|
|
|
|
|
class Plugin < Vagrant.plugin("1")
|
|
|
|
name "FreeBSD guest"
|
|
|
|
description "FreeBSD guest support."
|
2012-04-19 04:03:03 +00:00
|
|
|
|
2012-04-19 00:38:20 +00:00
|
|
|
config("freebsd") { Config }
|
2012-04-19 04:03:03 +00:00
|
|
|
guest("freebsd") { Guest }
|
2012-04-19 00:38:20 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|