2012-05-23 22:57:43 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
require Vagrant.source_root.join("plugins/guests/debian/guest")
|
|
|
|
|
2012-04-19 04:23:25 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module GuestUbuntu
|
|
|
|
class Guest < VagrantPlugins::GuestDebian::Guest
|
2013-04-04 04:47:57 +00:00
|
|
|
def detect?(machine)
|
2013-05-02 00:00:22 +00:00
|
|
|
machine.communicate.test("cat /etc/issue | grep 'Ubuntu'")
|
2013-04-04 04:47:57 +00:00
|
|
|
end
|
2011-03-01 07:38:30 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|