lh-vagrant-dns 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/vagrant-dns/dns_server.rb +1 -1
- data/lib/vagrant-dns/version.rb +1 -1
- metadata +1 -1
@@ -37,7 +37,7 @@ module VagrantPlugins
|
|
37
37
|
RubyDNS::run_server(listen: VagrantPlugins::DNS.listen) do
|
38
38
|
registry.each do |pattern, ip|
|
39
39
|
match(Regexp.new(pattern), Resolv::DNS::Resource::IN::A) \
|
40
|
-
do |
|
40
|
+
do |transaction, match_data|
|
41
41
|
transaction.respond!(ip)
|
42
42
|
end
|
43
43
|
end
|
data/lib/vagrant-dns/version.rb
CHANGED