knife-zero 1.15.0 → 1.15.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
  SHA1:
3
- metadata.gz: 4d422744e83e78c07f23663b5bca62be126aa323
4
- data.tar.gz: 176220ade6c9557708da92a1e09f62d7749393a8
3
+ metadata.gz: 0f27c1dcc062d31c5a6f25fba362697e71267cb7
4
+ data.tar.gz: 5f374aff7f7934d31004e3736d35eff495b5b6ca
5
5
  SHA512:
6
- metadata.gz: 4b37c886f5b4cf650a19da872a524c00410f5ed84f986071e5efab720366a693611abec1721b5419d38d7dcc310232bcff694d52bde067e8d128e5a5325d2677
7
- data.tar.gz: 8e7b2de341999f08962b0fc251f18ee86d7bd547cea669a98347c9cb71902e92e50952bfbe03f151410fded223c0acf6a1c595f8b38e45b85959f9974ec1c288
6
+ metadata.gz: 86053394416ccc0c1a3384d462e2d0f7e8331bdf047395551ba32533c457478b8ae71c88ceb2bd9aeddda14d7cf6673127b37d62704937d1421cb75bb5c9b1f2
7
+ data.tar.gz: 5618d59de9053264b46cd86010dd1cb49985d334ec4a96380ee1da1774ebd2aeddea99a4d3d804ad374c341a72d6e2d336eed9b169ed84f7e238ad7d0d51cff4
data/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@
4
4
 
5
5
  Empty.
6
6
 
7
+ ## v1.15.1
8
+
9
+ - Follow Upstream: Support option both identity_file and ssh_identity_file for zero bootstrap. #88
10
+
7
11
  ## v1.15.0
8
12
 
9
13
  - Feature: specified policy_group from option.
@@ -73,7 +73,8 @@ class Chef
73
73
  ssh.config[:ssh_port] = config[:ssh_port] || Chef::Config[:knife][:ssh_port]
74
74
  ssh.config[:ssh_gateway] = config[:ssh_gateway] || Chef::Config[:knife][:ssh_gateway]
75
75
  ssh.config[:forward_agent] = config[:forward_agent] || Chef::Config[:knife][:forward_agent]
76
- ssh.config[:identity_file] = config[:identity_file] || Chef::Config[:knife][:identity_file]
76
+ ssh.config[:identity_file] = config[:identity_file] || Chef::Config[:knife][:identity_file] # DEPRECATED
77
+ ssh.config[:ssh_identity_file] = config[:ssh_identity_file] || Chef::Config[:knife][:ssh_identity_file]
77
78
  ssh.config[:manual] = true
78
79
  ssh.config[:host_key_verify] = config[:host_key_verify] || Chef::Config[:knife][:host_key_verify]
79
80
  ssh.config[:on_error] = :raise
@@ -1,6 +1,6 @@
1
1
  module Knife
2
2
  module Zero
3
- VERSION = "1.15.0"
3
+ VERSION = "1.15.1"
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.15.0
4
+ version: 1.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - sawanoboly
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-28 00:00:00.000000000 Z
11
+ date: 2016-03-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler