vagrant/plugins/guests/linux/guest.rb
2013-04-10 13:39:21 -07:00

11 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