vagrant/plugins/guests/linux/guest.rb

10 lines
203 B
Ruby
Raw Normal View History

module VagrantPlugins
module GuestLinux
2012-11-07 05:14:45 +00:00
class Guest < Vagrant.plugin("2", :guest)
def detect?(machine)
2013-04-10 20:39:07 +00:00
machine.communicate.test("uname -s | grep 'Linux'")
end
end
end
2010-05-18 08:24:59 +00:00
end