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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1f2a752b04285eb11ffd2f3ed23882600d6c31435e1b50bb0a77e81a4463cd54
4
- data.tar.gz: 4ef3bbecfad04b39ce761add769ce3868b31bfe55fa5684050d57bd193d6b130
3
+ metadata.gz: abbb939662336abbddf5c7f4ab77b216979a26730690d802868793655ad84aa2
4
+ data.tar.gz: 7ba6d78a08b70b5982ee1212ef3a0fdf8292270b464af54a1134f9d93696adcf
5
5
  SHA512:
6
- metadata.gz: e72b4b39e26e9e49821bf6aa0caaabb070ead549423b3789695d602e8d3fd8fb9e474236d14d49f0c614bc255e71ce893364c25a66244369777760126533ac42
7
- data.tar.gz: 9987d2d5e729f668781f8dbfeee2659dc1bfa46182bf31c3fb44d9c55dcd0b5df67247cd2a845eac98143f2ff1eadd3e138c7d29aa223272f8f6807c37d8c2d3
6
+ metadata.gz: 9a0aa365b78a3701b60623f42fe11da530ecb1ca906e3da53b3de59806957527e90c12c2be74143b0ed7b2861e695ca2831ed060391f343faed2a8a53cdaaa45
7
+ data.tar.gz: 87c633753af3d312fc43c99eeafe2e3fdb4d6cb6ab5a34d453d4196e996ff3bd6f116aca31bec8a2fdf2d364423f63a0e5c9ffbfdfe4a0ad88e4b10a3096e412
data/LICENSE CHANGED
File without changes
data/Rakefile CHANGED
File without changes
File without changes
Binary file
File without changes
Binary file
@@ -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
- # The default setting is nil, which collects all data. Setting to [] will not
879
- # collect any data for save.
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
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -21,7 +21,7 @@
21
21
 
22
22
  module ChefConfig
23
23
  CHEFCONFIG_ROOT = File.expand_path("../..", __FILE__)
24
- VERSION = "14.13.11".freeze
24
+ VERSION = "14.14.14".freeze
25
25
  end
26
26
 
27
27
  #
File without changes
Binary file
File without changes
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.13.11
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-05-30 00:00:00.000000000 Z
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
- rubyforge_project:
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