vagrant/plugins/guests/debian/guest.rb

10 lines
214 B
Ruby
Raw Normal View History

module VagrantPlugins
module GuestDebian
2013-04-04 06:18:12 +00:00
class Guest < Vagrant.plugin("2", :guest)
def detect?(machine)
machine.communicate.test("cat /proc/version | grep 'Debian'")
end
end
end
end