test-kitchen 1.21.0 → 1.21.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
  SHA256:
3
- metadata.gz: 6a64cdfeef17eb4bf2664343fc237a76facb5f7178837ee1423a878288f1fac8
4
- data.tar.gz: 89335cce9a50a5a4eb8f0231bf49dd31a565441015bd3c340a8f83687207f618
3
+ metadata.gz: 6d519804eb4f08736b82846c7f745901887694b148d1d5ad7f606cfb522ba138
4
+ data.tar.gz: 89cc616a6a17d7c0f8cf5328a35ef210d5c00ee3ddb28054085e89bb88c9481d
5
5
  SHA512:
6
- metadata.gz: f74ae850e51a4d39d405df6765de9a1ad80bdd5bf4b80ae92e9c854dc466ab7c6d4b374f35b038cecf8a80c69093633462ff0fe583a7d97646af1b616b801538
7
- data.tar.gz: 4a46163d28150ffae39ca473783bb82e9e415b5235ae70e988746bd4eb1956db43a151a958dc848c51b4dd219e48bfffd8a29a49ea6c957c8bec849e88dfef08
6
+ metadata.gz: 66adaac2c6c9f984bf9106c57ed7bbc33d4459a3fadb5fb16d562b0fe9d2b654a1532ddbf5244a65f2c5bfb9bcf222ce0c822f31591b6b7f79e4fc1f52d6eff0
7
+ data.tar.gz: 06b71c2cf2d2b8958988c93f4b39cc1fa8b5af65543e0eee7bd53c79340bfa651fe21f6677e1eaabd3cf69c010fe0a64cc274254603ced60161752d0e15a7a25
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Change Log
2
2
 
3
+ ## [v1.21.1](https://github.com/test-kitchen/test-kitchen/tree/v1.21.1) (2018-04-18)
4
+ [Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.21.0...v1.21.1)
5
+
6
+ **Merged pull requests:**
7
+
8
+ - Revert: honor root\_path for location of chef installer script [\#1369]
9
+
3
10
  ## [v1.21.0](https://github.com/test-kitchen/test-kitchen/tree/v1.21.0) (2018-04-16)
4
11
  [Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.20.0...v1.21.0)
5
12
 
@@ -503,9 +503,8 @@ module Kitchen
503
503
  end
504
504
 
505
505
  def install_from_file(command)
506
- install_file = "#{config[:root_path]}/chef-installer.sh"
507
- script = ["mkdir -p #{config[:root_path]}"]
508
- script << "cat > #{install_file} <<\"EOL\""
506
+ install_file = "/tmp/chef-installer.sh"
507
+ script = ["cat > #{install_file} <<\"EOL\""]
509
508
  script << command
510
509
  script << "EOL"
511
510
  script << "chmod +x #{install_file}"
@@ -17,5 +17,5 @@
17
17
  # limitations under the License.
18
18
 
19
19
  module Kitchen
20
- VERSION = "1.21.0".freeze
20
+ VERSION = "1.21.1".freeze
21
21
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: test-kitchen
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.21.0
4
+ version: 1.21.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fletcher Nichol
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-16 00:00:00.000000000 Z
11
+ date: 2018-04-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mixlib-shellout