chef-metal-fogsphere 0.1.0.alpha.19 → 0.1.0.alpha.20
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/chef-metal-fogsphere.gemspec +1 -1
- data/lib/clc_driver.rb +2 -2
- 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: 142baf521f31559e790aee058579b2393ecfce03
|
4
|
+
data.tar.gz: c9665eaeea41b2e5398d89db9fab96ce9411b4d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0cdfdee92f4b6d462cb0c8c0cd7b569156b71bb8a2770ae928b846c8112e39463ac05b9b23db615171b5af0354edc34c1605d2af7de5d0322805b5e910b97b86
|
7
|
+
data.tar.gz: 56122e42aa31b48e58f8cdb56ba588c6ba15b19ba7bc9607dad65ed42c1089f191adb600e35b917cda98bf1e2d1d6e3a028cde3968947027da3481048adb9248
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |gem|
|
6
6
|
gem.name = "chef-metal-fogsphere"
|
7
|
-
gem.version = '0.1.0.alpha.
|
7
|
+
gem.version = '0.1.0.alpha.20'
|
8
8
|
gem.license = 'Apache 2.0'
|
9
9
|
gem.authors = ["Matt Wrock"]
|
10
10
|
gem.email = ["matt@centurylinkcloud.com"]
|
data/lib/clc_driver.rb
CHANGED
@@ -32,10 +32,10 @@ module ChefMetalVsphere
|
|
32
32
|
end
|
33
33
|
|
34
34
|
def self.compute_options_for(id, config)
|
35
|
-
compute_options = { :provider => 'vsphere', :vsphere_server => id
|
35
|
+
compute_options = { :provider => 'vsphere', :vsphere_server => id}
|
36
36
|
new_config = { :driver_options => { :compute_options => compute_options }}
|
37
37
|
|
38
|
-
config = Cheffish::MergedConfig.new(new_config)
|
38
|
+
config = Cheffish::MergedConfig.new(new_config, config)
|
39
39
|
|
40
40
|
[ config, id ]
|
41
41
|
end
|