chef-config 18.0.185 → 18.1.29
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 +10 -0
- data/lib/chef-config/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c488c053032691185a6abb6f89ee7402bb4f96c6e2cbedc078b68884f132dbd6
|
|
4
|
+
data.tar.gz: 9f124dff47af67e561fd98ae61304061038d8e446adf421d8f4e9abce3a21218
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8949292663a9ea3f8da676043022d16d9a87e6ec027d981215ed248bdc2ecb8b88686cef5ee194df6e99c4f03c0c73c5ce37d9c5e416beb028429ecaf56b6689
|
|
7
|
+
data.tar.gz: 88dea33ca3826cd1c516588c1f3f0bce07584151913334068c986ff53467060ebb197de3a0ad7777ad82f53ecac0f06e042d032aafb15eac0bef2f72805dd365
|
data/lib/chef-config/config.rb
CHANGED
|
@@ -778,6 +778,16 @@ module ChefConfig
|
|
|
778
778
|
# Then the public key from the new cert is pushed to Chef Server for authentication
|
|
779
779
|
default :migrate_key_to_keystore, false
|
|
780
780
|
|
|
781
|
+
# When we move certs into the certstore, we need to manage multi-user scenarios.
|
|
782
|
+
# This flag is used in conjunction with 'migrate_key_to_keystore'. If 2 users, Bob and Terri, are using
|
|
783
|
+
# this node, we need a means to separate the private keys of each user. Alternately, if an Admin
|
|
784
|
+
# configures the node and then relies on a system account to run chef afterward, we need a second
|
|
785
|
+
# method for that. Setting this in the client.rb file with a "user" flag will cause chef to create
|
|
786
|
+
# and manage separate private keys. We look for this flag to be set to "user" to manage distinct users keys with,
|
|
787
|
+
# However, if that key is set to anything else, we assume that keys are to be stored in the LocalMachine store.
|
|
788
|
+
# Leaving this key omitted has the same effect as setting it to anything other than "user"
|
|
789
|
+
default :auth_key_registry_type, nil
|
|
790
|
+
|
|
781
791
|
# When registering the client, should we allow the client key location to
|
|
782
792
|
# be a symlink? eg: /etc/chef/client.pem -> /etc/chef/prod-client.pem
|
|
783
793
|
# If the path of the key goes through a directory like /tmp this should
|
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: 18.
|
|
4
|
+
version: 18.1.29
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adam Jacob
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-03-07 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: 18.
|
|
19
|
+
version: 18.1.29
|
|
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: 18.
|
|
26
|
+
version: 18.1.29
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: mixlib-shellout
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -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.
|
|
161
|
+
rubygems_version: 3.3.7
|
|
162
162
|
signing_key:
|
|
163
163
|
specification_version: 4
|
|
164
164
|
summary: Chef Infra's default configuration and config loading library
|