2012-04-19 04:23:25 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module GuestUbuntu
|
2012-11-07 05:14:45 +00:00
|
|
|
class Plugin < Vagrant.plugin("2")
|
2012-04-19 04:23:25 +00:00
|
|
|
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
|