chef-config 15.3.14 → 15.4.45
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/chef-config/config.rb +8 -4
- data/lib/chef-config/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 16d40b49537155945f51eda6a762b794f00a82c9dff824b0dabbb58fcabd3e0b
|
4
|
+
data.tar.gz: f07e392b7ce953e6c71121099c39512d6a1902c8f350a748e2484a7890861e14
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3291e0dba33d3eecf69fe9e201290b13c3e4c4ade964c7bf6d38836f84f6235cf5b21f18bd43d5671d8998d31c107705acf49565669cc1f9f5b6f19082cf1bf
|
7
|
+
data.tar.gz: 2a6ab1f73ea1ada4ef3be785d8eec3036eba88f087b6b50eb153f8bcd9dd8f31f036cac3a68ab80dfe5dc98529fed3d373e58d54290d1483d9d1265419813ac5
|
data/lib/chef-config/config.rb
CHANGED
@@ -954,14 +954,18 @@ module ChefConfig
|
|
954
954
|
default :watchdog_timeout, 2 * (60 * 60) # 2 hours
|
955
955
|
end
|
956
956
|
|
957
|
-
# Add an empty and non-strict config_context for chefdk
|
958
|
-
# have code like `chefdk.generator_cookbook "/path/to/cookbook"`
|
959
|
-
#
|
960
|
-
#
|
957
|
+
# Add an empty and non-strict config_context for chefdk and chefcli.
|
958
|
+
# This lets the user have code like `chefdk.generator_cookbook "/path/to/cookbook"` or
|
959
|
+
# `chefcli[:generator_cookbook] = "/path/to/cookbook"` in their config.rb,
|
960
|
+
# and it will be ignored by tools like knife and ohai. ChefDK and ChefCLI
|
961
|
+
# themselves can define the config options it accepts and enable strict mode,
|
961
962
|
# and that will only apply when running `chef` commands.
|
962
963
|
config_context :chefdk do
|
963
964
|
end
|
964
965
|
|
966
|
+
config_context :chefcli do
|
967
|
+
end
|
968
|
+
|
965
969
|
# Configuration options for Data Collector reporting. These settings allow
|
966
970
|
# the user to configure where to send their Data Collector data, what token
|
967
971
|
# to send, and whether Data Collector should report its findings in client
|
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: 15.
|
4
|
+
version: 15.4.45
|
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-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: mixlib-shellout
|