mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-23 01:46:51 -05:00
11 lines
200 B
Ruby
11 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
|