2012-04-19 00:38:20 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module GuestLinux
|
|
|
|
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 "Linux guest."
|
|
|
|
description "Linux guest support."
|
2012-04-19 04:03:03 +00:00
|
|
|
|
2012-04-19 00:38:20 +00:00
|
|
|
config("linux") { Config }
|
2012-04-19 04:03:03 +00:00
|
|
|
guest("linux") { Guest }
|
2012-04-19 00:38:20 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|