vagrant/plugins/guests/gentoo/guest.rb

10 lines
204 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)
machine.communicate.test("cat /etc/gentoo-release")
end
end
end
end