vagrant/plugins/hosts/gentoo/host.rb

12 lines
200 B
Ruby
Raw Normal View History

2012-05-23 23:03:14 +00:00
require "vagrant"
2012-04-19 05:20:45 +00:00
module VagrantPlugins
module HostGentoo
2014-01-08 05:11:59 +00:00
class Host < Vagrant.plugin("2", :host)
2014-01-08 05:18:36 +00:00
def detect?(env)
2014-01-08 05:11:59 +00:00
File.exists?("/etc/gentoo-release")
2012-02-02 22:40:27 +00:00
end
end
end
end