2013-04-10 13:39:21 -07:00

12 lines
222 B
Ruby

require "vagrant"
module VagrantPlugins
module GuestLinux
class Guest < Vagrant.plugin("2", :guest)
def detect?(machine)
machine.communicate.test("uname -s | grep 'Linux'")
end
end
end
end