chef-provisioning 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c14634a9570d6cc3b5bab7825b0e93cb857da43c
|
4
|
+
data.tar.gz: 0b5ea043440b057512b117ec4a3fbca92426c322
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 77fd9ffc61c385cd4bd21ecb4eaa22592244139844da0f2376d08671c5a8113fd4cd2285cbdea1f15eb422e598962933f8f5f07cf742550eb2847f644e9ffa78
|
7
|
+
data.tar.gz: 294bf1b3e6634eaa5a78b4f4dfd05abcfe7339553e911026e8c03f8cecf342fd4941df7e98fad68cc4e817c4c876a2f2540e56a029ee5463dbad0a0fcf30ee32
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
# Chef Provisioning Changelog
|
2
2
|
|
3
|
-
## 1.1.
|
3
|
+
## 1.1.1 (4/19/2015)
|
4
|
+
|
5
|
+
- Fixed undefined method on nil class error inside setup-convergence ([@tyler-ball][])
|
6
|
+
|
7
|
+
## 1.1.0 (4/16/2015)
|
4
8
|
|
5
9
|
- Fix machine_batch :destroy, no longer creating extra threads ([#321][])
|
6
10
|
- Allow user to specify a custom stdout in `Chef::Config[:stdout]` ([#311][])
|
@@ -304,5 +308,6 @@
|
|
304
308
|
[@mivok]: https://github.com/mivok
|
305
309
|
[@mwrock]: https://github.com/mwrock
|
306
310
|
[@segv]: https://github.com/segv
|
311
|
+
[@tyler-ball]: https://github.com/tyler-ball
|
307
312
|
[@xeon22]: https://github.com/xeon22
|
308
313
|
[@xorl]: https://github.com/xorl
|
@@ -64,7 +64,7 @@ module Provisioning
|
|
64
64
|
|
65
65
|
# Install chef client
|
66
66
|
# TODO ssh verification of install.sh before running arbtrary code would be nice?
|
67
|
-
if convergence_options[:bootstrap_proxy].empty?
|
67
|
+
if !convergence_options[:bootstrap_proxy] || convergence_options[:bootstrap_proxy].empty?
|
68
68
|
@@install_sh_cache[install_sh_url] ||= Net::HTTP.get(URI(install_sh_url))
|
69
69
|
else
|
70
70
|
@@install_sh_cache[install_sh_url] ||= begin
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chef-provisioning
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Keiser
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-04-
|
11
|
+
date: 2015-04-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: chef
|