2014-05-06 12:50:35 -07:00

12 lines
230 B
Ruby

require "vagrant"
module VagrantPlugins
module GuestUbuntu
class Guest < Vagrant.plugin("2", :guest)
def detect?(machine)
machine.communicate.test("cat /etc/issue | grep 'Ubuntu'")
end
end
end
end