test-kitchen 1.21.0 → 1.21.1
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/CHANGELOG.md +7 -0
- data/lib/kitchen/provisioner/chef_base.rb +2 -3
- data/lib/kitchen/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6d519804eb4f08736b82846c7f745901887694b148d1d5ad7f606cfb522ba138
|
|
4
|
+
data.tar.gz: 89cc616a6a17d7c0f8cf5328a35ef210d5c00ee3ddb28054085e89bb88c9481d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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 = "
|
|
507
|
-
script = ["
|
|
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}"
|
data/lib/kitchen/version.rb
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2018-04-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: mixlib-shellout
|