vagrant-hitch 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/vagrant-hitch.rb +7 -5
- data/vagrant-hitch.gemspec +1 -1
- metadata +1 -1
data/lib/vagrant-hitch.rb
CHANGED
@@ -42,12 +42,14 @@ module VagrantHitch
|
|
42
42
|
config.vm.define profile do |config|
|
43
43
|
|
44
44
|
# Vagrant-DNS Support
|
45
|
-
if node_config['dns']
|
46
|
-
|
47
|
-
|
45
|
+
if node_config['dns']
|
46
|
+
if node_config['dns']['tld']
|
47
|
+
config.dns.tld = node_config['dns']['tld']
|
48
|
+
end
|
48
49
|
|
49
|
-
|
50
|
-
|
50
|
+
if node_config['dns']['patterns']
|
51
|
+
config.dns.patterns = node_config['dns']['patterns']
|
52
|
+
end
|
51
53
|
end
|
52
54
|
|
53
55
|
# Setup VBox
|
data/vagrant-hitch.gemspec
CHANGED