vagrant/plugins/guests/funtoo/guest.rb

10 lines
212 B
Ruby
Raw Normal View History

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