kitchen-puppet 1.40.1 → 1.40.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/kitchen-puppet/version.rb +1 -1
- data/lib/kitchen/provisioner/puppet_apply.rb +6 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9a52a9b68db3301a65d7801ce0ccc5b96d3a9243
|
|
4
|
+
data.tar.gz: 363c6d58945981575f34e78714decce33cccf65e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 17ae32e249492274b0f6e7de9a7530f62aa8b6d4a09249c4051c3aae098dd28a4a9b5fad460a857ca0db4ae0d8510123071fdbfb9d59976dc415907a861dcc55
|
|
7
|
+
data.tar.gz: c01e08ef9578ee06d60ae6cbd6da376ac62ef9d778cf6316575ee54778ac0ecdc5d5d7f4f92e12c30f4b628d965e69a4e84082360dfeb4242c474599c2e69335
|
|
@@ -180,7 +180,9 @@ module Kitchen
|
|
|
180
180
|
case puppet_platform
|
|
181
181
|
when 'debian', 'ubuntu'
|
|
182
182
|
info("Installing puppet on #{config[:platform]}")
|
|
183
|
+
# need to add a CR to avoid trouble with proxy settings concatenation
|
|
183
184
|
<<-INSTALL
|
|
185
|
+
|
|
184
186
|
if [ ! $(which puppet) ]; then
|
|
185
187
|
#{sudo('apt-get')} -y install wget
|
|
186
188
|
#{sudo('wget')} #{wget_proxy_parm} #{puppet_apt_repo}
|
|
@@ -198,7 +200,9 @@ module Kitchen
|
|
|
198
200
|
INSTALL
|
|
199
201
|
when 'redhat', 'centos', 'fedora', 'oracle', 'amazon'
|
|
200
202
|
info("Installing puppet from yum on #{puppet_platform}")
|
|
203
|
+
# need to add a CR to avoid trouble with proxy settings concatenation
|
|
201
204
|
<<-INSTALL
|
|
205
|
+
|
|
202
206
|
if [ ! $(which puppet) ]; then
|
|
203
207
|
#{install_puppet_yum_repo}
|
|
204
208
|
fi
|
|
@@ -209,7 +213,9 @@ module Kitchen
|
|
|
209
213
|
INSTALL
|
|
210
214
|
else
|
|
211
215
|
info('Installing puppet, will try to determine platform os')
|
|
216
|
+
# need to add a CR to avoid trouble with proxy settings concatenation
|
|
212
217
|
<<-INSTALL
|
|
218
|
+
|
|
213
219
|
if [ ! $(which puppet) ]; then
|
|
214
220
|
if [ -f /etc/centos-release ] || [ -f /etc/redhat-release ] || [ -f /etc/oracle-release ]; then
|
|
215
221
|
#{install_puppet_yum_repo}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kitchen-puppet
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.40.
|
|
4
|
+
version: 1.40.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Neill Turner
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-04
|
|
11
|
+
date: 2016-05-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: test-kitchen
|