2013-08-03 19:55:17 +02:00

10 lines
212 B
Ruby

module VagrantPlugins
module GuestGentoo
class Guest < Vagrant.plugin("2", :guest)
def detect?(machine)
machine.communicate.test("grep Gentoo /etc/gentoo-release")
end
end
end
end