knife-windows 0.8.4.rc.0 → 0.8.4.rc.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: bda9f8a781d7517b19471617994e0a99a645aabe
4
- data.tar.gz: 7043f0be06bbd01a3ca2b552f0426e2a0d6ba9d2
3
+ metadata.gz: e17f77cb8b3a227b11b4af7bd3169ca52e888422
4
+ data.tar.gz: 0b5513f0f7541b1d1c0306acf770cd59093b141c
5
5
  SHA512:
6
- metadata.gz: 77a2c6f152d91f98865b8f4a026aba720f8a957aa4126547e78507cb739e40b8daf4d1bfea23d030e5c8d09fabe234505767113f086efe896f315c6ecd0ac88b
7
- data.tar.gz: f19532056eff8f30562d1cc0b8561bb197c4d6dcacbd2426ccbcfc4c6cb21870259fd834902c431ded1b33e793cd5d2f1cfb19febe032a26e240f6e554674372
6
+ metadata.gz: 68789276f57eac9269c4f04ba252c76130766f09da5d76e7d14c15ed14a78e0e09e24121e9949d642067efadd9e1235e18355ad2c30d00eb7c757cd10cc1f2a0
7
+ data.tar.gz: 7da5d52384a19d703c069495ec6f612917fa739def17b057424db73d5695ac63da375937d3f5cf18d8e4c0d1c99732e0608d7a883ec45653674baabc29d90e1d
@@ -99,6 +99,21 @@ class Chef
99
99
  :long => "--auth-timeout MINUTES",
100
100
  :description => "The maximum time in minutes to wait to for authentication over the transport to the node to succeed. The default value is 2 minutes.",
101
101
  :default => 2
102
+
103
+ option :node_ssl_verify_mode,
104
+ :long => "--node-ssl-verify-mode [peer|none]",
105
+ :description => "Whether or not to verify the SSL cert for all HTTPS requests.",
106
+ :proc => Proc.new { |v|
107
+ valid_values = ["none", "peer"]
108
+ unless valid_values.include?(v)
109
+ raise "Invalid value '#{v}' for --node-ssl-verify-mode. Valid values are: #{valid_values.join(", ")}"
110
+ end
111
+ }
112
+
113
+ option :node_verify_api_cert,
114
+ :long => "--[no-]node-verify-api-cert",
115
+ :description => "Verify the SSL cert for HTTPS requests to the Chef server API.",
116
+ :boolean => true
102
117
  end
103
118
  end
104
119
 
@@ -1,6 +1,6 @@
1
1
  module Knife
2
2
  module Windows
3
- VERSION = "0.8.4.rc.0"
3
+ VERSION = "0.8.4.rc.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-windows
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.4.rc.0
4
+ version: 0.8.4.rc.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seth Chisamore
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-10 00:00:00.000000000 Z
11
+ date: 2015-02-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: winrm-s
@@ -114,3 +114,4 @@ specification_version: 4
114
114
  summary: Plugin that adds functionality to Chef's Knife CLI for configuring/interacting
115
115
  with nodes running Microsoft Windows
116
116
  test_files: []
117
+ has_rdoc: