chef-config 13.0.118 → 13.1.31
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/lib/chef-config/config.rb +1 -4
- data/lib/chef-config/version.rb +1 -1
- data/spec/unit/fips_spec.rb +7 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 53ced93b35089677baf1534b1e90fb75d8518b23
|
|
4
|
+
data.tar.gz: d779cc06e0d14c63473378e690545da2d97f2b13
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4258d4cb751e50d31a4e935b281475ade95a00fb59e28347d231d94cd8cabab8491f746fc5bc96c6a7142a1103f8b002d32f45d9ea4e6484093443a2edf2f063
|
|
7
|
+
data.tar.gz: 70feb57c25d85d44c8fb639b74b6409dd837743f0808e17f9e2510ef90194e23958c97fec434287f78373fa5dbe9449f3ff1e0b0778f1ac2f2722c1017d9b756
|
data/lib/chef-config/config.rb
CHANGED
|
@@ -381,10 +381,7 @@ module ChefConfig
|
|
|
381
381
|
# Whether Chef Zero local mode should bind to a port. All internal requests
|
|
382
382
|
# will go through the socketless code path regardless, so the socket is
|
|
383
383
|
# only needed if other processes will connect to the local mode server.
|
|
384
|
-
|
|
385
|
-
# For compatibility this is set to true but it will be changed to false in
|
|
386
|
-
# the future.
|
|
387
|
-
default :listen, true
|
|
384
|
+
default :listen, false
|
|
388
385
|
|
|
389
386
|
config_context :chef_zero do
|
|
390
387
|
config_strict_mode true
|
data/lib/chef-config/version.rb
CHANGED
data/spec/unit/fips_spec.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#
|
|
2
2
|
# Author:: Matt Wrock (<matt@mattwrock.com>)
|
|
3
|
-
# Copyright:: Copyright (c) 2016 Chef Software
|
|
3
|
+
# Copyright:: Copyright (c) 2016-2017, Chef Software Inc.
|
|
4
4
|
# License:: Apache License, Version 2.0
|
|
5
5
|
#
|
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -19,6 +19,12 @@
|
|
|
19
19
|
require "chef-config/fips"
|
|
20
20
|
require "spec_helper"
|
|
21
21
|
|
|
22
|
+
begin
|
|
23
|
+
require "win32/registry"
|
|
24
|
+
rescue LoadError
|
|
25
|
+
# not on unix
|
|
26
|
+
end
|
|
27
|
+
|
|
22
28
|
RSpec.describe "ChefConfig.fips?" do
|
|
23
29
|
let(:enabled) { "0" }
|
|
24
30
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chef-config
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 13.
|
|
4
|
+
version: 13.1.31
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adam Jacob
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-05-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: mixlib-shellout
|