chef-config 14.13.11 → 14.14.14
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/LICENSE +0 -0
- data/Rakefile +0 -0
- data/chef-config.gemspec +0 -0
- data/lib/.DS_Store +0 -0
- data/lib/chef-config.rb +0 -0
- data/lib/chef-config/.DS_Store +0 -0
- data/lib/chef-config/config.rb +13 -3
- data/lib/chef-config/exceptions.rb +0 -0
- data/lib/chef-config/fips.rb +0 -0
- data/lib/chef-config/logger.rb +0 -0
- data/lib/chef-config/mixin/credentials.rb +0 -0
- data/lib/chef-config/mixin/dot_d.rb +0 -0
- data/lib/chef-config/mixin/fuzzy_hostname_matcher.rb +0 -0
- data/lib/chef-config/path_helper.rb +0 -0
- data/lib/chef-config/version.rb +1 -1
- data/lib/chef-config/windows.rb +0 -0
- data/lib/chef-config/workstation_config_loader.rb +0 -0
- data/spec/.DS_Store +0 -0
- data/spec/spec_helper.rb +0 -0
- data/spec/unit/config_spec.rb +0 -0
- data/spec/unit/fips_spec.rb +0 -0
- data/spec/unit/path_helper_spec.rb +0 -0
- data/spec/unit/workstation_config_loader_spec.rb +0 -0
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: abbb939662336abbddf5c7f4ab77b216979a26730690d802868793655ad84aa2
|
|
4
|
+
data.tar.gz: 7ba6d78a08b70b5982ee1212ef3a0fdf8292270b464af54a1134f9d93696adcf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9a0aa365b78a3701b60623f42fe11da530ecb1ca906e3da53b3de59806957527e90c12c2be74143b0ed7b2861e695ca2831ed060391f343faed2a8a53cdaaa45
|
|
7
|
+
data.tar.gz: 87c633753af3d312fc43c99eeafe2e3fdb4d6cb6ab5a34d453d4196e996ff3bd6f116aca31bec8a2fdf2d364423f63a0e5c9ffbfdfe4a0ad88e4b10a3096e412
|
data/LICENSE
CHANGED
|
File without changes
|
data/Rakefile
CHANGED
|
File without changes
|
data/chef-config.gemspec
CHANGED
|
File without changes
|
data/lib/.DS_Store
ADDED
|
Binary file
|
data/lib/chef-config.rb
CHANGED
|
File without changes
|
|
Binary file
|
data/lib/chef-config/config.rb
CHANGED
|
@@ -829,6 +829,7 @@ module ChefConfig
|
|
|
829
829
|
#
|
|
830
830
|
# NOTE: CHANGING THIS SETTING MAY CAUSE CORRUPTION, DATA LOSS AND
|
|
831
831
|
# INSTABILITY.
|
|
832
|
+
#
|
|
832
833
|
default :file_atomic_update, true
|
|
833
834
|
|
|
834
835
|
# There are 3 possible values for this configuration setting.
|
|
@@ -836,19 +837,28 @@ module ChefConfig
|
|
|
836
837
|
# false => file staging is done via tempfiles under ENV['TMP']
|
|
837
838
|
# :auto => file staging will try using destination directory if possible and
|
|
838
839
|
# will fall back to ENV['TMP'] if destination directory is not usable.
|
|
840
|
+
#
|
|
839
841
|
default :file_staging_uses_destdir, :auto
|
|
840
842
|
|
|
841
843
|
# Exit if another run is in progress and the chef-client is unable to
|
|
842
844
|
# get the lock before time expires. If nil, no timeout is enforced. (Exits
|
|
843
845
|
# immediately if 0.)
|
|
846
|
+
#
|
|
844
847
|
default :run_lock_timeout, nil
|
|
845
848
|
|
|
846
849
|
# Number of worker threads for syncing cookbooks in parallel. Increasing
|
|
847
850
|
# this number can result in gateway errors from the server (namely 503 and 504).
|
|
848
851
|
# If you are seeing this behavior while using the default setting, reducing
|
|
849
852
|
# the number of threads will help.
|
|
853
|
+
#
|
|
850
854
|
default :cookbook_sync_threads, 10
|
|
851
855
|
|
|
856
|
+
# True if all resources by default default to unified mode, with all resources
|
|
857
|
+
# applying in "compile" mode, with no "converge" mode. False is backwards compatible
|
|
858
|
+
# setting for Chef 11-15 behavior. This will break forward notifications.
|
|
859
|
+
#
|
|
860
|
+
default :resource_unified_mode_default, false
|
|
861
|
+
|
|
852
862
|
# At the beginning of the Chef Client run, the cookbook manifests are downloaded which
|
|
853
863
|
# contain URLs for every file in every relevant cookbook. Most of the files
|
|
854
864
|
# (recipes, resources, providers, libraries, etc) are immediately synchronized
|
|
@@ -874,9 +884,9 @@ module ChefConfig
|
|
|
874
884
|
default :no_lazy_load, true
|
|
875
885
|
|
|
876
886
|
# A whitelisted array of attributes you want sent over the wire when node
|
|
877
|
-
# data is saved.
|
|
878
|
-
#
|
|
879
|
-
#
|
|
887
|
+
# data is saved. The default setting is nil, which collects all data. Setting
|
|
888
|
+
# to [] will not collect any data for save.
|
|
889
|
+
#
|
|
880
890
|
default :automatic_attribute_whitelist, nil
|
|
881
891
|
default :default_attribute_whitelist, nil
|
|
882
892
|
default :normal_attribute_whitelist, nil
|
|
File without changes
|
data/lib/chef-config/fips.rb
CHANGED
|
File without changes
|
data/lib/chef-config/logger.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/chef-config/version.rb
CHANGED
data/lib/chef-config/windows.rb
CHANGED
|
File without changes
|
|
File without changes
|
data/spec/.DS_Store
ADDED
|
Binary file
|
data/spec/spec_helper.rb
CHANGED
|
File without changes
|
data/spec/unit/config_spec.rb
CHANGED
|
File without changes
|
data/spec/unit/fips_spec.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
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: 14.
|
|
4
|
+
version: 14.14.14
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adam Jacob
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-10-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: mixlib-shellout
|
|
@@ -158,7 +158,9 @@ files:
|
|
|
158
158
|
- LICENSE
|
|
159
159
|
- Rakefile
|
|
160
160
|
- chef-config.gemspec
|
|
161
|
+
- lib/.DS_Store
|
|
161
162
|
- lib/chef-config.rb
|
|
163
|
+
- lib/chef-config/.DS_Store
|
|
162
164
|
- lib/chef-config/config.rb
|
|
163
165
|
- lib/chef-config/exceptions.rb
|
|
164
166
|
- lib/chef-config/fips.rb
|
|
@@ -170,6 +172,7 @@ files:
|
|
|
170
172
|
- lib/chef-config/version.rb
|
|
171
173
|
- lib/chef-config/windows.rb
|
|
172
174
|
- lib/chef-config/workstation_config_loader.rb
|
|
175
|
+
- spec/.DS_Store
|
|
173
176
|
- spec/spec_helper.rb
|
|
174
177
|
- spec/unit/config_spec.rb
|
|
175
178
|
- spec/unit/fips_spec.rb
|
|
@@ -194,8 +197,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
194
197
|
- !ruby/object:Gem::Version
|
|
195
198
|
version: '0'
|
|
196
199
|
requirements: []
|
|
197
|
-
|
|
198
|
-
rubygems_version: 2.7.9
|
|
200
|
+
rubygems_version: 3.0.3
|
|
199
201
|
signing_key:
|
|
200
202
|
specification_version: 4
|
|
201
203
|
summary: Chef's default configuration and config loading
|