knife-zero 1.17.2 → 1.17.3

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: 7aa3b8b95a39014c30db5dd890963627c6bf3021
4
- data.tar.gz: 50dd86832ec103289091b8b2677144aa1b6321db
3
+ metadata.gz: ea5fb8de6dd221bbd1a0ef047a4abb8bd8be6cc4
4
+ data.tar.gz: 61c5a890a6fce8e06aef72811facbfda85d55d46
5
5
  SHA512:
6
- metadata.gz: 5c6937f7d30abc37b22e1dbd6e198fc8ec0162282c014970bddc1268d01e0f5f66cc18a734ca4e54fd338bdaff79b7c558eca3ebab2a871d50ecc2999cac0bee
7
- data.tar.gz: 9f2bf733ed07fb70d6dbdfada604fb25fbfa0f00a0ca5083cf275a587b5f4ae2af88ddfdc05c31a9538b97c9c32897f3b145d717cfbb99651eaf7af780e0a41f
6
+ metadata.gz: 8c4871d72da89e3d62c3599c24be22b50742bcf39601ba14f9a6cc56ce1dc834c89841250e62232ccec635c587b41bc2c00c2e4946f629193901a66a2b28b611
7
+ data.tar.gz: bc08682a37ebce33017414659a0c3d14f837c54173f744ae297b973f63c8e28ca35034425e59229cb6a3e6d5b683d9b8313ea2d803e10d4764680c0849a7cd56
@@ -4,6 +4,10 @@
4
4
 
5
5
  Empty.
6
6
 
7
+ ## v1.17.3
8
+
9
+ - apply no-color to remote side #109 HT: @yusukegoto
10
+
7
11
  ## v1.17.2
8
12
 
9
13
  - pass true as 2nd args for Net::SSH.configuration_for by default. #106
@@ -57,6 +57,7 @@ class Chef
57
57
  s << " -s"
58
58
  s << " --minimal-ohai" if @config[:minimal_ohai]
59
59
  s << " -j #{@config[:json_attribs]}" if @config[:json_attribs]
60
+ s << " --no-color" unless @config[:color]
60
61
  s << " -W" if @config[:why_run]
61
62
  Chef::Log.info "Remote command: " + s
62
63
  s
@@ -91,6 +91,7 @@ class Chef
91
91
  s << " --splay #{@config[:splay]}" if @config[:splay]
92
92
  s << " -n #{@config[:named_run_list]}" if @config[:named_run_list]
93
93
  s << " --skip-cookbook-sync" if @config[:skip_cookbook_sync]
94
+ s << " --no-color" unless @config[:color]
94
95
  s << " -W" if @config[:why_run]
95
96
  Chef::Log.info "Remote command: " + s
96
97
  s
@@ -1,6 +1,6 @@
1
1
  module Knife
2
2
  module Zero
3
- VERSION = "1.17.2"
3
+ VERSION = "1.17.3"
4
4
  MAJOR, MINOR, TINY = VERSION.split('.')
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: knife-zero
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.17.2
4
+ version: 1.17.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - sawanoboly
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-01-16 00:00:00.000000000 Z
11
+ date: 2017-03-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -192,7 +192,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
192
192
  version: '0'
193
193
  requirements: []
194
194
  rubyforge_project:
195
- rubygems_version: 2.4.8
195
+ rubygems_version: 2.6.10
196
196
  signing_key:
197
197
  specification_version: 4
198
198
  summary: Run chef-client at remote node with chef-zero(local-mode) via HTTP over SSH