2014-01-07 21:14:33 -08:00

13 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