vagrant/plugins/hosts/gentoo/host.rb

12 lines
200 B
Ruby

require "vagrant"
module VagrantPlugins
module HostGentoo
class Host < Vagrant.plugin("2", :host)
def detect?(env)
File.exists?("/etc/gentoo-release")
end
end
end
end