2012-04-19 04:23:25 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module GuestUbuntu
|
|
|
|
class Plugin < Vagrant.plugin("1")
|
|
|
|
name "Ubuntu guest"
|
|
|
|
description "Ubuntu guest support."
|
|
|
|
|
2012-05-23 22:57:43 +00:00
|
|
|
guest("ubuntu") do
|
|
|
|
require File.expand_path("../guest", __FILE__)
|
|
|
|
Guest
|
|
|
|
end
|
2012-04-19 04:23:25 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|