2014-01-07 21:11:59 -08:00

12 lines
205 B
Ruby

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