vagrant-berkshelf 3.0.0 → 3.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/berkshelf/vagrant/berks_config.rb +4 -3
- data/lib/berkshelf/vagrant/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6756cdfdfc203a867d17dbca91420bb5f360b36c
|
4
|
+
data.tar.gz: 9da918a274b2556339f341e39d41c2d803c397d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5376cfd45dd23245082bdcbf6088ab4625f8aa4090ce89c1b49471d4a3934c4ca9111db2b80688371771e796aba50b8ab00ae6d0e7d74006504874abca3955d9
|
7
|
+
data.tar.gz: 9eed85ed2561b146977d0d4b037281f6d34919e896bdf5fe1d2254ca75836ed6ab727a5c69202c9040ecc88f987a7d677a9b5c60d01eac50d446a357dc9563e9
|
data/CHANGELOG.md
CHANGED
@@ -25,15 +25,16 @@ module Berkshelf::Vagrant
|
|
25
25
|
# @return [Config]
|
26
26
|
def instance
|
27
27
|
@instance ||= if File.exists?(path) && File.readable?(path)
|
28
|
-
JSON.parse(File.read(path))
|
28
|
+
new(JSON.parse(File.read(path)))
|
29
29
|
else
|
30
30
|
new
|
31
31
|
end
|
32
32
|
end
|
33
33
|
end
|
34
34
|
|
35
|
-
def initialize
|
36
|
-
|
35
|
+
def initialize(attributes = {})
|
36
|
+
attributes.merge!(chef: ChefConfig.instance, ssl: ::Vagrant::Util::HashWithIndifferentAccess.new(verify: false))
|
37
|
+
super(attributes)
|
37
38
|
end
|
38
39
|
|
39
40
|
def chef
|