kitchen-puppet 1.40.1 → 1.40.2

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: 11b587dcf0c8edac262d59163a231adbff9759d0
4
- data.tar.gz: f6c7fd9d346e4859d1d84e53a453b881abf7a564
3
+ metadata.gz: 9a52a9b68db3301a65d7801ce0ccc5b96d3a9243
4
+ data.tar.gz: 363c6d58945981575f34e78714decce33cccf65e
5
5
  SHA512:
6
- metadata.gz: 45a3bd13a12bb393c0f32bcafc8ba54fa7956fd1997a22d0aa02c104b9b39511ab41cb16ac2a19fb2e7ee32d9031432c2279d14574ceee8e94c598d70915031f
7
- data.tar.gz: ce6b1859b013b434497367a94bd8b779554d12bd32d51be9dfcad1e5f308feca168061a57466a22eef520d985ab53cb206deb2f73cfd3bc5d25757acc7bf3c09
6
+ metadata.gz: 17ae32e249492274b0f6e7de9a7530f62aa8b6d4a09249c4051c3aae098dd28a4a9b5fad460a857ca0db4ae0d8510123071fdbfb9d59976dc415907a861dcc55
7
+ data.tar.gz: c01e08ef9578ee06d60ae6cbd6da376ac62ef9d778cf6316575ee54778ac0ecdc5d5d7f4f92e12c30f4b628d965e69a4e84082360dfeb4242c474599c2e69335
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Kitchen
4
4
  module Puppet
5
- VERSION = '1.40.1'.freeze
5
+ VERSION = '1.40.2'.freeze
6
6
  end
7
7
  end
@@ -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.1
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-30 00:00:00.000000000 Z
11
+ date: 2016-05-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: test-kitchen