chef-config 17.2.29 → 17.5.22
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/chef-config.gemspec +4 -4
- data/lib/chef-config/config.rb +22 -0
- data/lib/chef-config/version.rb +1 -1
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d8461bda65c1bd83683380d25a23df595e94d4ffe8de312d9c4e5ce2172c1aec
|
4
|
+
data.tar.gz: 960ae6a47393d6cc3f9118928afb0f655f260bfdfad450fb23d7b3397e7dac53
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3207fd1dc526362d3ae3efc0955c67a29022040094d5506f36e26f6361c2a32f3cdc0b43b0c7f579ccd053949847bc03e553eadb8e92d303f7e7bff59ebc33d2
|
7
|
+
data.tar.gz: a14e5dd38e98546af0a79e6d8428731802cd0306eb77ea8db9182ed4f8ff34d180133accca4b1452ed8ebd3b1dc3b749ffa9950abc93f235abe497360c0d5291
|
data/chef-config.gemspec
CHANGED
@@ -16,10 +16,10 @@ Gem::Specification.new do |spec|
|
|
16
16
|
|
17
17
|
spec.metadata = {
|
18
18
|
"bug_tracker_uri" => "https://github.com/chef/chef/issues",
|
19
|
-
"changelog_uri" => "https://github.com/chef/chef/blob/
|
20
|
-
"documentation_uri" => "https://github.com/chef/chef/tree/
|
21
|
-
"homepage_uri" => "https://github.com/chef/chef/tree/
|
22
|
-
"source_code_uri" => "https://github.com/chef/chef/tree/
|
19
|
+
"changelog_uri" => "https://github.com/chef/chef/blob/main/CHANGELOG.md",
|
20
|
+
"documentation_uri" => "https://github.com/chef/chef/tree/main/chef-config/README.md",
|
21
|
+
"homepage_uri" => "https://github.com/chef/chef/tree/main/chef-config",
|
22
|
+
"source_code_uri" => "https://github.com/chef/chef/tree/main/chef-config",
|
23
23
|
}
|
24
24
|
|
25
25
|
spec.require_paths = ["lib"]
|
data/lib/chef-config/config.rb
CHANGED
@@ -392,9 +392,21 @@ module ChefConfig
|
|
392
392
|
# Where chef's cache files should be stored
|
393
393
|
default(:file_cache_path) { PathHelper.join(cache_path, "cache") }.writes_value { |path| expand_relative_paths(path) }
|
394
394
|
|
395
|
+
# Where chef's cache files should be stored, used for bootstrap on unix filesystems
|
396
|
+
default(:unix_bootstrap_file_cache_path) { PathHelper.join("/var", ChefUtils::Dist::Infra::DIR_SUFFIX, "cache", windows: false) }
|
397
|
+
|
398
|
+
# Where chef's cache files should be stored, used for bootstrap on windows filesystems
|
399
|
+
default(:windows_bootstrap_file_cache_path) { PathHelper.join("C:", ChefUtils::Dist::Infra::DIR_SUFFIX, "cache", windows: true) }
|
400
|
+
|
395
401
|
# Where backups of chef-managed files should go
|
396
402
|
default(:file_backup_path) { PathHelper.join(cache_path, "backup") }
|
397
403
|
|
404
|
+
# Where chef's backup files should be stored, used for bootstrap on unix filesystems
|
405
|
+
default(:unix_bootstrap_file_backup_path) { PathHelper.join("/var", ChefUtils::Dist::Infra::DIR_SUFFIX, "backup", windows: false) }
|
406
|
+
|
407
|
+
# Where chef's backup files should be stored, used for bootstrap on windows filesystems
|
408
|
+
default(:windows_bootstrap_file_backup_path) { PathHelper.join("C:", ChefUtils::Dist::Infra::DIR_SUFFIX, "backup", windows: true) }
|
409
|
+
|
398
410
|
# The chef-client (or solo) lockfile.
|
399
411
|
#
|
400
412
|
# If your `file_cache_path` resides on a NFS (or non-flock()-supporting
|
@@ -632,6 +644,16 @@ module ChefConfig
|
|
632
644
|
# effect if `policy_document_native_api` is set to `false`.
|
633
645
|
default :deployment_group, nil
|
634
646
|
|
647
|
+
# When using policyfiles you can optionally set it to read the node.run_list
|
648
|
+
# from the server and have that override the policyfile run_list or the
|
649
|
+
# named_run_list set in config. With policyfiles there is no depsolving done
|
650
|
+
# on the run_list items so every item in the run_list must be in the set of
|
651
|
+
# cookbooks pushed to the node. This enables flows where the node can change
|
652
|
+
# its run_list and have it persist or to bootstrap nodes with the -j flag. If
|
653
|
+
# no run_list is set on the server node object then the configured named_run_list
|
654
|
+
# or run_list out of the policy is used.
|
655
|
+
default :policy_persist_run_list, false
|
656
|
+
|
635
657
|
# Set these to enable SSL authentication / mutual-authentication
|
636
658
|
# with the server
|
637
659
|
|
data/lib/chef-config/version.rb
CHANGED
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: 17.
|
4
|
+
version: 17.5.22
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Jacob
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-09-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: chef-utils
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 17.
|
19
|
+
version: 17.5.22
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 17.
|
26
|
+
version: 17.5.22
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: mixlib-shellout
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -139,10 +139,10 @@ licenses:
|
|
139
139
|
- Apache-2.0
|
140
140
|
metadata:
|
141
141
|
bug_tracker_uri: https://github.com/chef/chef/issues
|
142
|
-
changelog_uri: https://github.com/chef/chef/blob/
|
143
|
-
documentation_uri: https://github.com/chef/chef/tree/
|
144
|
-
homepage_uri: https://github.com/chef/chef/tree/
|
145
|
-
source_code_uri: https://github.com/chef/chef/tree/
|
142
|
+
changelog_uri: https://github.com/chef/chef/blob/main/CHANGELOG.md
|
143
|
+
documentation_uri: https://github.com/chef/chef/tree/main/chef-config/README.md
|
144
|
+
homepage_uri: https://github.com/chef/chef/tree/main/chef-config
|
145
|
+
source_code_uri: https://github.com/chef/chef/tree/main/chef-config
|
146
146
|
post_install_message:
|
147
147
|
rdoc_options: []
|
148
148
|
require_paths:
|
@@ -158,7 +158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
158
158
|
- !ruby/object:Gem::Version
|
159
159
|
version: '0'
|
160
160
|
requirements: []
|
161
|
-
rubygems_version: 3.2.
|
161
|
+
rubygems_version: 3.2.22
|
162
162
|
signing_key:
|
163
163
|
specification_version: 4
|
164
164
|
summary: Chef Infra's default configuration and config loading library
|