vagrant/plugins/guests/gentoo/guest.rb

10 lines
212 B
Ruby
Raw Normal View History

module VagrantPlugins
module GuestGentoo
2013-04-04 19:09:40 +00:00
class Guest < Vagrant.plugin("2", :guest)
def detect?(machine)
2013-08-03 17:55:17 +00:00
machine.communicate.test("grep Gentoo /etc/gentoo-release")
end
end
end
end