mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-21 00:42:33 -05:00
12 lines
219 B
Ruby
12 lines
219 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module HostNull
|
|
class Host < Vagrant.plugin("2", :host)
|
|
def detect?(env)
|
|
# This host can only be explicitly chosen.
|
|
false
|
|
end
|
|
end
|
|
end
|
|
end
|