kitchen-microwave 0.2.1 → 0.3.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: db9e93c87c7edc047a04214137600f56826c56805e08e2bc08c5a515ebe8e28e
4
- data.tar.gz: 3064929a45ca102c4a1cfb7b93f435bb9b2abec648dfbea78646a216637d602f
3
+ metadata.gz: 7ac3bf23f7b76302fe494abe5d94884d89fe6b173675982fe63881007d923787
4
+ data.tar.gz: ba1de3abd88efb9ae1f83fc46bf41344f9c51224d5bfa9612095fec9e45d4f76
5
5
  SHA512:
6
- metadata.gz: 4f8b321dde867c0f7c428c660592f6ac334d827d0f7dbe5ba6d09fe320bc0d2fd884ffba84527ca552c49dcf4ad07d6645d21af173876e48ef551460fde1029a
7
- data.tar.gz: b00c95d3ddad8d1d40d10d30d4125bdd6a154597f6ff763ea703957e28d18beb864498f5e680c3a63b3fc7bc1dfa4d91c5c957a03d158fe9f0620aefb7369cb8
6
+ metadata.gz: 0e019ddab41df974ade7863fda4620a1c9bd4024ce7885de674d71113f4ccba494c328d3ced284f0d4ad21c214469a38dd8385c247d97cf5415d5bf931ed401d
7
+ data.tar.gz: 811b61eb78d7c60d8f7680d22edcf79a82eecfd25a223df766ef9b7fb7675b96269a174afa94cdfc95106d2640f0dccf9f7bb343ad10fa399eb27884500a9e87
data/CHANGELOG.md CHANGED
@@ -1,7 +1,10 @@
1
1
  # Kitchen Microwave CHANGELOG
2
2
 
3
- This file is used to list changes made in each version of the kitchen-microwave
4
- gem.
3
+ This file is used to list changes made in each version of the kitchen-microwave gem.
4
+
5
+ ## 0.3.0 (2018-08-20)
6
+
7
+ - Fix Ohai's inability to find an ipaddress on some platforms
5
8
 
6
9
  ## 0.2.1 (2018-05-22)
7
10
 
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
13
13
  spec.summary = 'An automatic config generator for Test Kitchen+Dokken+Inspec'
14
14
  spec.description = 'An automatic config generator for ' \
15
15
  'Test Kitchen+Dokken+Inspec'
16
- spec.homepage = 'https://github.com/RoboticCheese/kitchen-microwave-ruby'
16
+ spec.homepage = 'https://github.com/socrata-platform/kitchen-microwave'
17
17
  spec.license = 'Apache-2.0'
18
18
 
19
19
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "driver": {
3
3
  "intermediate_instructions": [
4
- "RUN yum -y install systemd"
4
+ "RUN yum -y install systemd iproute"
5
5
  ],
6
6
  "pid_one_command": "/lib/systemd/systemd"
7
7
  }
@@ -1,6 +1,8 @@
1
1
  {
2
2
  "driver": {
3
- "intermediate_instructions": [],
3
+ "intermediate_instructions": [
4
+ "RUN yum -y install iproute"
5
+ ],
4
6
  "pid_one_command": "/lib/systemd/systemd"
5
7
  }
6
8
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "driver": {
3
3
  "intermediate_instructions": [
4
- "RUN dnf -y install procps sudo"
4
+ "RUN dnf -y install procps sudo iproute"
5
5
  ],
6
6
  "pid_one_command": "/lib/systemd/systemd"
7
7
  }
@@ -1,6 +1,9 @@
1
1
  {
2
2
  "driver": {
3
- "intermediate_instructions": [],
3
+ "intermediate_instructions": [
4
+ "RUN apt-get update",
5
+ "RUN apt-get -y install iproute2"
6
+ ],
4
7
  "pid_one_command": "/lib/systemd/systemd"
5
8
  }
6
9
  }
@@ -2,8 +2,7 @@
2
2
  "driver": {
3
3
  "intermediate_instructions": [
4
4
  "RUN apt-get update",
5
- "RUN apt-get -y install systemd"
6
-
5
+ "RUN apt-get -y install systemd iproute2"
7
6
  ],
8
7
  "pid_one_command": "/lib/systemd/systemd"
9
8
  }
@@ -22,8 +22,8 @@ module Kitchen
22
22
  # Microwave's VERSION information.
23
23
  module Microwave
24
24
  MAJOR = 0
25
- MINOR = 2
26
- PATCH = 1
25
+ MINOR = 3
26
+ PATCH = 0
27
27
  VERSION = [MAJOR, MINOR, PATCH].join('.')
28
28
  end
29
29
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kitchen-microwave
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Hartman
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-05-22 00:00:00.000000000 Z
11
+ date: 2018-08-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: chef
@@ -219,7 +219,7 @@ files:
219
219
  - lib/kitchen/microwave/verifier.rb
220
220
  - lib/kitchen/microwave/version.rb
221
221
  - lib/kitchen/microwave_cli.rb
222
- homepage: https://github.com/RoboticCheese/kitchen-microwave-ruby
222
+ homepage: https://github.com/socrata-platform/kitchen-microwave
223
223
  licenses:
224
224
  - Apache-2.0
225
225
  metadata: {}