2022-09-22 08:54:46 -04:00

12 lines
199 B
Ruby

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