chef 16.7.61-universal-mingw32 → 16.9.20-universal-mingw32
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/Gemfile +3 -5
- data/README.md +2 -2
- data/chef.gemspec +12 -2
- data/distro/ruby_bin_folder/AMD64/Chef.PowerShell.Wrapper.dll +0 -0
- data/distro/ruby_bin_folder/AMD64/Chef.PowerShell.dll +0 -0
- data/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Chef.PowerShell.Wrapper.Core.dll +0 -0
- data/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Chef.Powershell.Core.dll +0 -0
- data/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Chef.Powershell.Core.pdb +0 -0
- data/distro/ruby_bin_folder/x86/Chef.PowerShell.dll +0 -0
- data/distro/ruby_bin_folder/x86/Chef.Powershell.Wrapper.dll +0 -0
- data/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Chef.PowerShell.Wrapper.Core.dll +0 -0
- data/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Chef.Powershell.Core.dll +0 -0
- data/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Chef.Powershell.Core.pdb +0 -0
- data/lib/chef/application/base.rb +1 -1
- data/lib/chef/client.rb +3 -0
- data/lib/chef/compliance/default_attributes.rb +93 -0
- data/lib/chef/compliance/fetcher/automate.rb +69 -0
- data/lib/chef/compliance/fetcher/chef_server.rb +134 -0
- data/lib/chef/compliance/reporter/automate.rb +201 -0
- data/lib/chef/compliance/reporter/chef_server_automate.rb +94 -0
- data/lib/chef/compliance/reporter/compliance_enforcer.rb +20 -0
- data/lib/chef/compliance/reporter/json_file.rb +19 -0
- data/lib/chef/compliance/runner.rb +262 -0
- data/lib/chef/cookbook_manifest.rb +1 -0
- data/lib/chef/encrypted_data_bag_item/assertions.rb +1 -1
- data/lib/chef/exceptions.rb +4 -0
- data/lib/chef/http/ssl_policies.rb +33 -14
- data/lib/chef/knife/bootstrap/train_connector.rb +1 -1
- data/lib/chef/knife/core/formatting_options.rb +49 -0
- data/lib/chef/knife/core/node_presenter.rb +0 -25
- data/lib/chef/knife/core/status_presenter.rb +1 -26
- data/lib/chef/knife/core/ui.rb +4 -1
- data/lib/chef/knife/core/windows_bootstrap_context.rb +1 -1
- data/lib/chef/knife/node_show.rb +2 -1
- data/lib/chef/knife/search.rb +2 -1
- data/lib/chef/knife/ssh.rb +3 -1
- data/lib/chef/knife/status.rb +8 -11
- data/lib/chef/mixin/powershell_exec.rb +3 -1
- data/lib/chef/platform/query_helpers.rb +4 -4
- data/lib/chef/policy_builder/policyfile.rb +1 -1
- data/lib/chef/powershell.rb +2 -0
- data/lib/chef/provider/dsc_resource.rb +12 -24
- data/lib/chef/provider/dsc_script.rb +16 -20
- data/lib/chef/provider/git.rb +5 -5
- data/lib/chef/provider/package.rb +53 -19
- data/lib/chef/provider/package/dnf.rb +39 -12
- data/lib/chef/provider/package/dnf/dnf_helper.py +18 -5
- data/lib/chef/provider/package/dnf/python_helper.rb +6 -6
- data/lib/chef/provider/package/freebsd/pkgng.rb +3 -1
- data/lib/chef/provider/yum_repository.rb +2 -2
- data/lib/chef/resource/chef_client_config.rb +1 -1
- data/lib/chef/resource/chef_gem.rb +2 -2
- data/lib/chef/resource/cron/cron_d.rb +1 -0
- data/lib/chef/resource/dsc_script.rb +8 -1
- data/lib/chef/resource/file.rb +1 -1
- data/lib/chef/resource/gem_package.rb +2 -2
- data/lib/chef/resource/homebrew_cask.rb +3 -3
- data/lib/chef/resource/hostname.rb +3 -3
- data/lib/chef/resource/http_request.rb +1 -1
- data/lib/chef/resource/locale.rb +1 -1
- data/lib/chef/resource/mdadm.rb +2 -2
- data/lib/chef/resource/osx_profile.rb +7 -7
- data/lib/chef/resource/remote_directory.rb +1 -1
- data/lib/chef/resource/ruby.rb +1 -5
- data/lib/chef/resource/ruby_block.rb +1 -1
- data/lib/chef/resource/template.rb +2 -2
- data/lib/chef/resource/user/windows_user.rb +5 -0
- data/lib/chef/resource/windows_certificate.rb +9 -13
- data/lib/chef/resource/yum_repository.rb +5 -0
- data/lib/chef/resource_collection/resource_set.rb +1 -1
- data/lib/chef/util/dsc/configuration_generator.rb +52 -11
- data/lib/chef/util/dsc/lcm_output_parser.rb +3 -4
- data/lib/chef/util/dsc/local_configuration_manager.rb +17 -14
- data/lib/chef/util/dsc/resource_store.rb +5 -11
- data/lib/chef/version.rb +1 -1
- data/lib/chef/win32/api/file.rb +4 -0
- data/spec/data/rubygems.org/latest_specs.4.8.gz +0 -0
- data/spec/data/rubygems.org/nonexistent_gem +0 -0
- data/spec/data/rubygems.org/sexp_processor +0 -0
- data/spec/data/rubygems.org/sexp_processor-4.15.1.gemspec.rz +0 -0
- data/spec/data/ssl/binary/chef-rspec-der.cert +0 -0
- data/spec/data/ssl/binary/chef-rspec-der.key +0 -0
- data/spec/functional/resource/dnf_package_spec.rb +319 -16
- data/spec/functional/resource/dsc_script_spec.rb +3 -6
- data/spec/functional/resource/windows_certificate_spec.rb +204 -384
- data/spec/integration/client/client_spec.rb +2 -1
- data/spec/integration/compliance/compliance_spec.rb +81 -0
- data/spec/integration/recipes/recipe_dsl_spec.rb +1 -0
- data/spec/spec_helper.rb +1 -1
- data/spec/unit/client_spec.rb +1 -0
- data/spec/unit/compliance/fetcher/automate_spec.rb +134 -0
- data/spec/unit/compliance/fetcher/chef_server_spec.rb +93 -0
- data/spec/unit/compliance/reporter/automate_spec.rb +427 -0
- data/spec/unit/compliance/reporter/chef_server_automate_spec.rb +177 -0
- data/spec/unit/compliance/reporter/compliance_enforcer_spec.rb +48 -0
- data/spec/unit/compliance/runner_spec.rb +167 -0
- data/spec/unit/http/ssl_policies_spec.rb +107 -68
- data/spec/unit/knife/bootstrap_spec.rb +5 -17
- data/spec/unit/knife/core/node_editor_spec.rb +1 -1
- data/spec/unit/knife/core/status_presenter_spec.rb +54 -0
- data/spec/unit/mixin/openssl_helper_spec.rb +0 -7
- data/spec/unit/mixin/powershell_exec_spec.rb +1 -1
- data/spec/unit/platform/query_helpers_spec.rb +11 -12
- data/spec/unit/provider/dsc_resource_spec.rb +10 -27
- data/spec/unit/provider/dsc_script_spec.rb +1 -1
- data/spec/unit/provider/mount/windows_spec.rb +1 -0
- data/spec/unit/provider/package/freebsd/pkgng_spec.rb +1 -1
- data/spec/unit/provider/package/rubygems_spec.rb +39 -7
- data/spec/unit/provider/systemd_unit_spec.rb +1 -1
- data/spec/unit/resource/user/windows_user_spec.rb +36 -0
- data/spec/unit/resource/windows_certificate_spec.rb +12 -0
- data/spec/unit/util/dsc/configuration_generator_spec.rb +79 -0
- data/spec/unit/util/dsc/local_configuration_manager_spec.rb +27 -35
- metadata +55 -18
- data/lib/chef/util/powershell/cmdlet.rb +0 -169
- data/lib/chef/util/powershell/cmdlet_result.rb +0 -61
- data/spec/data/trusted_certs_empty/.gitkeep +0 -0
- data/spec/data/trusted_certs_empty/README.md +0 -1
- data/spec/functional/util/powershell/cmdlet_spec.rb +0 -111
- data/spec/scripts/ssl-serve.rb +0 -47
- data/spec/unit/util/powershell/cmdlet_spec.rb +0 -106
@@ -25,6 +25,85 @@ describe Chef::Util::DSC::ConfigurationGenerator do
|
|
25
25
|
Chef::Util::DSC::ConfigurationGenerator.new(node, "tmp")
|
26
26
|
end
|
27
27
|
|
28
|
+
describe "#validate_switch_name!" do
|
29
|
+
it "should not raise an error if a name contains all upper case letters" do
|
30
|
+
conf_man.send(:validate_switch_name!, "HELLO")
|
31
|
+
end
|
32
|
+
|
33
|
+
it "should not raise an error if the name contains all lower case letters" do
|
34
|
+
conf_man.send(:validate_switch_name!, "hello")
|
35
|
+
end
|
36
|
+
|
37
|
+
it "should not raise an error if no special characters are used except _" do
|
38
|
+
conf_man.send(:validate_switch_name!, "hello_world")
|
39
|
+
end
|
40
|
+
|
41
|
+
%w{! @ # $ % ^ & * & * ( ) - = + \{ \} . ? < > \\ /}.each do |sym|
|
42
|
+
it "raises an ArgumentError if configuration name contains #{sym}" do
|
43
|
+
expect do
|
44
|
+
conf_man.send(:validate_switch_name!, "Hello#{sym}")
|
45
|
+
end.to raise_error(ArgumentError)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
describe "#escape_parameter_value" do
|
51
|
+
# Is this list really complete?
|
52
|
+
%w{` " # '}.each do |c|
|
53
|
+
it "escapes #{c}" do
|
54
|
+
expect(conf_man.send(:escape_parameter_value, "stuff #{c}")).to eql("stuff `#{c}")
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
it "does not do anything to a string without special characters" do
|
59
|
+
expect(conf_man.send(:escape_parameter_value, "stuff")).to eql("stuff")
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
describe "#escape_string_parameter_value" do
|
64
|
+
it "surrounds a string with ''" do
|
65
|
+
expect(conf_man.send(:escape_string_parameter_value, "stuff")).to eql("'stuff'")
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
describe "#command_switches_string" do
|
70
|
+
it "raises an ArgumentError if the key is not a symbol" do
|
71
|
+
expect do
|
72
|
+
conf_man.send(:command_switches_string, { "foo" => "bar" })
|
73
|
+
end.to raise_error(ArgumentError)
|
74
|
+
end
|
75
|
+
|
76
|
+
it "does not allow invalid switch names" do
|
77
|
+
expect do
|
78
|
+
conf_man.send(:command_switches_string, { foo!: "bar" })
|
79
|
+
end.to raise_error(ArgumentError)
|
80
|
+
end
|
81
|
+
|
82
|
+
it "ignores switches with a false value" do
|
83
|
+
expect(conf_man.send(:command_switches_string, { foo: false })).to eql("")
|
84
|
+
end
|
85
|
+
|
86
|
+
it "should correctly handle a value type of string" do
|
87
|
+
expect(conf_man.send(:command_switches_string, { foo: "bar" })).to eql("-foo 'bar'")
|
88
|
+
end
|
89
|
+
|
90
|
+
it "should correctly handle a value type of string even when it is 0 length" do
|
91
|
+
expect(conf_man.send(:command_switches_string, { foo: "" })).to eql("-foo ''")
|
92
|
+
end
|
93
|
+
|
94
|
+
it "should not quote integers" do
|
95
|
+
expect(conf_man.send(:command_switches_string, { foo: 1 })).to eql("-foo 1")
|
96
|
+
end
|
97
|
+
|
98
|
+
it "should not quote floats" do
|
99
|
+
expect(conf_man.send(:command_switches_string, { foo: 1.0 })).to eql("-foo 1.0")
|
100
|
+
end
|
101
|
+
|
102
|
+
it "has just the switch when the value is true" do
|
103
|
+
expect(conf_man.send(:command_switches_string, { foo: true })).to eql("-foo")
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
28
107
|
describe "#validate_configuration_name!" do
|
29
108
|
it "should not raise an error if a name contains all upper case letters" do
|
30
109
|
conf_man.send(:validate_configuration_name!, "HELLO")
|
@@ -49,23 +49,22 @@ describe Chef::Util::DSC::LocalConfigurationManager do
|
|
49
49
|
EOH
|
50
50
|
end
|
51
51
|
|
52
|
-
let(:
|
53
|
-
double("
|
52
|
+
let(:powershell) do
|
53
|
+
double("Chef::PowerShell", errors: lcm_errors, error?: !lcm_errors.empty?, result: lcm_result)
|
54
54
|
end
|
55
55
|
|
56
56
|
describe "test_configuration method invocation" do
|
57
57
|
context "when interacting with the LCM using a PowerShell cmdlet" do
|
58
58
|
before(:each) do
|
59
|
-
allow(lcm).to receive(:run_configuration_cmdlet).and_return(
|
59
|
+
allow(lcm).to receive(:run_configuration_cmdlet).and_return(powershell)
|
60
60
|
allow(lcm).to receive(:ps_version_gte_5?).and_return(false)
|
61
61
|
end
|
62
62
|
context "that returns successfully" do
|
63
|
-
let(:
|
64
|
-
let(:
|
65
|
-
let(:lcm_cmdlet_success) { true }
|
63
|
+
let(:lcm_result) { normal_lcm_output }
|
64
|
+
let(:lcm_errors) { [] }
|
66
65
|
|
67
66
|
it "successfully returns resource information for normally formatted output when cmdlet the cmdlet succeeds" do
|
68
|
-
test_configuration_result = lcm.test_configuration("config"
|
67
|
+
test_configuration_result = lcm.test_configuration("config")
|
69
68
|
expect(test_configuration_result.class).to be(Array)
|
70
69
|
expect(test_configuration_result.length).to be > 0
|
71
70
|
expect(Chef::Log).not_to receive(:warn)
|
@@ -73,13 +72,12 @@ describe Chef::Util::DSC::LocalConfigurationManager do
|
|
73
72
|
end
|
74
73
|
|
75
74
|
context "when running on PowerShell version 5" do
|
76
|
-
let(:
|
77
|
-
let(:
|
78
|
-
let(:lcm_cmdlet_success) { true }
|
75
|
+
let(:lcm_result) { normal_lcm_output }
|
76
|
+
let(:lcm_errors) { [] }
|
79
77
|
|
80
78
|
it "successfully returns resource information for normally formatted output when cmdlet the cmdlet succeeds" do
|
81
79
|
allow(lcm).to receive(:ps_version_gte_5?).and_return(true)
|
82
|
-
test_configuration_result = lcm.test_configuration("config"
|
80
|
+
test_configuration_result = lcm.test_configuration("config")
|
83
81
|
expect(test_configuration_result.class).to be(Array)
|
84
82
|
expect(test_configuration_result.length).to be > 0
|
85
83
|
expect(Chef::Log).not_to receive(:warn)
|
@@ -87,13 +85,12 @@ describe Chef::Util::DSC::LocalConfigurationManager do
|
|
87
85
|
end
|
88
86
|
|
89
87
|
context "when running on PowerShell version less than 5" do
|
90
|
-
let(:
|
91
|
-
let(:
|
92
|
-
let(:lcm_cmdlet_success) { true }
|
88
|
+
let(:lcm_result) { normal_lcm_output }
|
89
|
+
let(:lcm_errors) { [] }
|
93
90
|
|
94
91
|
it "successfully returns resource information for normally formatted output when cmdlet the cmdlet succeeds" do
|
95
92
|
allow(lcm).to receive(:ps_version_gte_5?).and_return(false)
|
96
|
-
test_configuration_result = lcm.test_configuration("config"
|
93
|
+
test_configuration_result = lcm.test_configuration("config")
|
97
94
|
expect(test_configuration_result.class).to be(Array)
|
98
95
|
expect(test_configuration_result.length).to be > 0
|
99
96
|
expect(Chef::Log).not_to receive(:warn)
|
@@ -104,10 +101,9 @@ describe Chef::Util::DSC::LocalConfigurationManager do
|
|
104
101
|
let(:common_command_prefix) { "$ProgressPreference = 'SilentlyContinue';" }
|
105
102
|
let(:ps4_base_command) { "#{common_command_prefix} Start-DscConfiguration -path tmp -wait -erroraction 'stop' -force" }
|
106
103
|
let(:lcm_command_ps4) { ps4_base_command + " -whatif; if (! $?) { exit 1 }" }
|
107
|
-
let(:lcm_command_ps5) { "#{common_command_prefix} Test-DscConfiguration -path tmp | format-list" }
|
108
|
-
let(:
|
109
|
-
let(:
|
110
|
-
let(:lcm_cmdlet_success) { true }
|
104
|
+
let(:lcm_command_ps5) { "#{common_command_prefix} Test-DscConfiguration -path tmp | format-list | Out-String" }
|
105
|
+
let(:lcm_result) { normal_lcm_output }
|
106
|
+
let(:lcm_errors) { [] }
|
111
107
|
|
112
108
|
it "successfully returns command when apply_configuration true" do
|
113
109
|
expect(lcm.send(:lcm_command, true)).to eq(ps4_base_command)
|
@@ -125,9 +121,8 @@ describe Chef::Util::DSC::LocalConfigurationManager do
|
|
125
121
|
end
|
126
122
|
|
127
123
|
context "that fails due to missing what-if switch in DSC resource cmdlet implementation" do
|
128
|
-
let(:
|
129
|
-
let(:
|
130
|
-
let(:lcm_cmdlet_success) { false }
|
124
|
+
let(:lcm_result) { "" }
|
125
|
+
let(:lcm_errors) { [no_whatif_lcm_output] }
|
131
126
|
|
132
127
|
it "returns true when passed to #whatif_not_supported?" do
|
133
128
|
expect(lcm.send(:whatif_not_supported?, no_whatif_lcm_output)).to be_truthy
|
@@ -137,40 +132,38 @@ describe Chef::Util::DSC::LocalConfigurationManager do
|
|
137
132
|
expect(Chef::Log).to receive(:warn).at_least(:once)
|
138
133
|
expect(lcm).to receive(:whatif_not_supported?).and_call_original
|
139
134
|
test_configuration_result = nil
|
140
|
-
expect { test_configuration_result = lcm.test_configuration("config"
|
135
|
+
expect { test_configuration_result = lcm.test_configuration("config") }.not_to raise_error
|
141
136
|
expect(test_configuration_result.class).to be(Array)
|
142
137
|
end
|
143
138
|
end
|
144
139
|
|
145
140
|
context "that fails due to a DSC resource not being imported before StartDSCConfiguration -whatif is executed" do
|
146
|
-
let(:
|
147
|
-
let(:
|
148
|
-
let(:lcm_cmdlet_success) { false }
|
141
|
+
let(:lcm_result) { "" }
|
142
|
+
let(:lcm_errors) { [dsc_resource_import_failure_output] }
|
149
143
|
|
150
144
|
it "logs a warning if the message is formatted as expected when a resource import failure occurs" do
|
151
145
|
expect(Chef::Log).to receive(:warn).at_least(:once)
|
152
146
|
expect(lcm).to receive(:dsc_module_import_failure?).and_call_original
|
153
147
|
test_configuration_result = nil
|
154
|
-
expect { test_configuration_result = lcm.test_configuration("config"
|
148
|
+
expect { test_configuration_result = lcm.test_configuration("config") }.not_to raise_error
|
155
149
|
end
|
156
150
|
|
157
151
|
it "returns a (possibly empty) array of ResourceInfo instances" do
|
158
152
|
expect(Chef::Log).to receive(:warn).at_least(:once)
|
159
153
|
test_configuration_result = nil
|
160
|
-
expect { test_configuration_result = lcm.test_configuration("config"
|
154
|
+
expect { test_configuration_result = lcm.test_configuration("config") }.not_to raise_error
|
161
155
|
expect(test_configuration_result.class).to be(Array)
|
162
156
|
end
|
163
157
|
end
|
164
158
|
|
165
159
|
context "that fails due to an unknown PowerShell cmdlet error" do
|
166
|
-
let(:
|
167
|
-
let(:
|
168
|
-
let(:lcm_cmdlet_success) { false }
|
160
|
+
let(:lcm_result) { "some output" }
|
161
|
+
let(:lcm_errors) { ["Abort, Retry, Fail?"] }
|
169
162
|
|
170
163
|
it "logs a warning" do
|
171
164
|
expect(Chef::Log).to receive(:warn).at_least(:once)
|
172
165
|
expect(lcm).to receive(:dsc_module_import_failure?).and_call_original
|
173
|
-
expect { lcm.test_configuration("config"
|
166
|
+
expect { lcm.test_configuration("config") }.not_to raise_error
|
174
167
|
end
|
175
168
|
end
|
176
169
|
end
|
@@ -188,12 +181,11 @@ describe Chef::Util::DSC::LocalConfigurationManager do
|
|
188
181
|
end
|
189
182
|
end
|
190
183
|
|
191
|
-
describe "#run_configuration_cmdlet" do
|
184
|
+
describe "#run_configuration_cmdlet", :windows_powershell_dsc_only do
|
192
185
|
context "when invalid dsc script is given" do
|
193
186
|
it "raises exception" do
|
194
187
|
configuration_document = "invalid-config"
|
195
|
-
|
196
|
-
expect { lcm.send(:run_configuration_cmdlet, configuration_document, true, shellout_flags) }.to raise_error(Chef::Exceptions::PowershellCmdletException)
|
188
|
+
expect { lcm.send(:run_configuration_cmdlet, configuration_document, true) }.to raise_error(Chef::PowerShell::CommandFailed)
|
197
189
|
end
|
198
190
|
end
|
199
191
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chef
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 16.
|
4
|
+
version: 16.9.20
|
5
5
|
platform: universal-mingw32
|
6
6
|
authors:
|
7
7
|
- Adam Jacob
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: chef-config
|
@@ -16,28 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 16.
|
19
|
+
version: 16.9.20
|
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: 16.
|
26
|
+
version: 16.9.20
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: chef-utils
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 16.
|
33
|
+
version: 16.9.20
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 16.
|
40
|
+
version: 16.9.20
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: train-core
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -206,6 +206,20 @@ dependencies:
|
|
206
206
|
- - "~>"
|
207
207
|
- !ruby/object:Gem::Version
|
208
208
|
version: '16.0'
|
209
|
+
- !ruby/object:Gem::Dependency
|
210
|
+
name: inspec-core
|
211
|
+
requirement: !ruby/object:Gem::Requirement
|
212
|
+
requirements:
|
213
|
+
- - "~>"
|
214
|
+
- !ruby/object:Gem::Version
|
215
|
+
version: '4.23'
|
216
|
+
type: :runtime
|
217
|
+
prerelease: false
|
218
|
+
version_requirements: !ruby/object:Gem::Requirement
|
219
|
+
requirements:
|
220
|
+
- - "~>"
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
version: '4.23'
|
209
223
|
- !ruby/object:Gem::Dependency
|
210
224
|
name: ffi
|
211
225
|
requirement: !ruby/object:Gem::Requirement
|
@@ -240,7 +254,7 @@ dependencies:
|
|
240
254
|
requirements:
|
241
255
|
- - ">="
|
242
256
|
- !ruby/object:Gem::Version
|
243
|
-
version: '
|
257
|
+
version: '5.1'
|
244
258
|
- - "<"
|
245
259
|
- !ruby/object:Gem::Version
|
246
260
|
version: '7'
|
@@ -250,7 +264,7 @@ dependencies:
|
|
250
264
|
requirements:
|
251
265
|
- - ">="
|
252
266
|
- !ruby/object:Gem::Version
|
253
|
-
version: '
|
267
|
+
version: '5.1'
|
254
268
|
- - "<"
|
255
269
|
- !ruby/object:Gem::Version
|
256
270
|
version: '7'
|
@@ -314,14 +328,14 @@ dependencies:
|
|
314
328
|
requirements:
|
315
329
|
- - '='
|
316
330
|
- !ruby/object:Gem::Version
|
317
|
-
version: 1.1.0.
|
331
|
+
version: 1.1.0.rc2
|
318
332
|
type: :runtime
|
319
333
|
prerelease: false
|
320
334
|
version_requirements: !ruby/object:Gem::Requirement
|
321
335
|
requirements:
|
322
336
|
- - '='
|
323
337
|
- !ruby/object:Gem::Version
|
324
|
-
version: 1.1.0.
|
338
|
+
version: 1.1.0.rc2
|
325
339
|
- !ruby/object:Gem::Dependency
|
326
340
|
name: highline
|
327
341
|
requirement: !ruby/object:Gem::Requirement
|
@@ -1494,6 +1508,14 @@ files:
|
|
1494
1508
|
- lib/chef/chef_fs/parallelizer/parallel_enumerable.rb
|
1495
1509
|
- lib/chef/chef_fs/path_utils.rb
|
1496
1510
|
- lib/chef/client.rb
|
1511
|
+
- lib/chef/compliance/default_attributes.rb
|
1512
|
+
- lib/chef/compliance/fetcher/automate.rb
|
1513
|
+
- lib/chef/compliance/fetcher/chef_server.rb
|
1514
|
+
- lib/chef/compliance/reporter/automate.rb
|
1515
|
+
- lib/chef/compliance/reporter/chef_server_automate.rb
|
1516
|
+
- lib/chef/compliance/reporter/compliance_enforcer.rb
|
1517
|
+
- lib/chef/compliance/reporter/json_file.rb
|
1518
|
+
- lib/chef/compliance/runner.rb
|
1497
1519
|
- lib/chef/config.rb
|
1498
1520
|
- lib/chef/config_fetcher.rb
|
1499
1521
|
- lib/chef/constants.rb
|
@@ -1661,6 +1683,7 @@ files:
|
|
1661
1683
|
- lib/chef/knife/cookbook_upload.rb
|
1662
1684
|
- lib/chef/knife/core/bootstrap_context.rb
|
1663
1685
|
- lib/chef/knife/core/cookbook_scm_repo.rb
|
1686
|
+
- lib/chef/knife/core/formatting_options.rb
|
1664
1687
|
- lib/chef/knife/core/gem_glob_loader.rb
|
1665
1688
|
- lib/chef/knife/core/generic_presenter.rb
|
1666
1689
|
- lib/chef/knife/core/hashed_command_loader.rb
|
@@ -2218,8 +2241,6 @@ files:
|
|
2218
2241
|
- lib/chef/util/editor.rb
|
2219
2242
|
- lib/chef/util/file_edit.rb
|
2220
2243
|
- lib/chef/util/path_helper.rb
|
2221
|
-
- lib/chef/util/powershell/cmdlet.rb
|
2222
|
-
- lib/chef/util/powershell/cmdlet_result.rb
|
2223
2244
|
- lib/chef/util/powershell/ps_credential.rb
|
2224
2245
|
- lib/chef/util/selinux.rb
|
2225
2246
|
- lib/chef/util/threaded_job_queue.rb
|
@@ -2531,6 +2552,10 @@ files:
|
|
2531
2552
|
- spec/data/root_alias_cookbooks/simple/attributes.rb
|
2532
2553
|
- spec/data/root_alias_cookbooks/simple/metadata.rb
|
2533
2554
|
- spec/data/root_alias_cookbooks/simple/recipe.rb
|
2555
|
+
- spec/data/rubygems.org/latest_specs.4.8.gz
|
2556
|
+
- spec/data/rubygems.org/nonexistent_gem
|
2557
|
+
- spec/data/rubygems.org/sexp_processor
|
2558
|
+
- spec/data/rubygems.org/sexp_processor-4.15.1.gemspec.rz
|
2534
2559
|
- spec/data/run_context/cookbooks/circular-dep1/attributes/default.rb
|
2535
2560
|
- spec/data/run_context/cookbooks/circular-dep1/definitions/circular_dep1_res.rb
|
2536
2561
|
- spec/data/run_context/cookbooks/circular-dep1/libraries/lib.rb
|
@@ -2612,6 +2637,8 @@ files:
|
|
2612
2637
|
- spec/data/snap_package/get_conf_success.json
|
2613
2638
|
- spec/data/snap_package/result_failure.json
|
2614
2639
|
- spec/data/ssl/5e707473.0
|
2640
|
+
- spec/data/ssl/binary/chef-rspec-der.cert
|
2641
|
+
- spec/data/ssl/binary/chef-rspec-der.key
|
2615
2642
|
- spec/data/ssl/chef-rspec.cert
|
2616
2643
|
- spec/data/ssl/chef-rspec.key
|
2617
2644
|
- spec/data/ssl/key.pem
|
@@ -2631,8 +2658,6 @@ files:
|
|
2631
2658
|
- spec/data/trusted_certs/intermediate.pem
|
2632
2659
|
- spec/data/trusted_certs/opscode.pem
|
2633
2660
|
- spec/data/trusted_certs/root.pem
|
2634
|
-
- spec/data/trusted_certs_empty/.gitkeep
|
2635
|
-
- spec/data/trusted_certs_empty/README.md
|
2636
2661
|
- spec/data/windows_certificates/base64_test.cer
|
2637
2662
|
- spec/data/windows_certificates/othertest.cer
|
2638
2663
|
- spec/data/windows_certificates/test.cer
|
@@ -2766,7 +2791,6 @@ files:
|
|
2766
2791
|
- spec/functional/shell_spec.rb
|
2767
2792
|
- spec/functional/tiny_server_spec.rb
|
2768
2793
|
- spec/functional/util/path_helper_spec.rb
|
2769
|
-
- spec/functional/util/powershell/cmdlet_spec.rb
|
2770
2794
|
- spec/functional/version_spec.rb
|
2771
2795
|
- spec/functional/win32/crypto_spec.rb
|
2772
2796
|
- spec/functional/win32/registry_spec.rb
|
@@ -2778,6 +2802,7 @@ files:
|
|
2778
2802
|
- spec/integration/client/client_spec.rb
|
2779
2803
|
- spec/integration/client/exit_code_spec.rb
|
2780
2804
|
- spec/integration/client/ipv6_spec.rb
|
2805
|
+
- spec/integration/compliance/compliance_spec.rb
|
2781
2806
|
- spec/integration/knife/chef_fs_data_store_spec.rb
|
2782
2807
|
- spec/integration/knife/chef_repo_path_spec.rb
|
2783
2808
|
- spec/integration/knife/chef_repository_file_system_spec.rb
|
@@ -2857,7 +2882,6 @@ files:
|
|
2857
2882
|
- spec/integration/recipes/use_partial_spec.rb
|
2858
2883
|
- spec/integration/solo/solo_spec.rb
|
2859
2884
|
- spec/rcov.opts
|
2860
|
-
- spec/scripts/ssl-serve.rb
|
2861
2885
|
- spec/spec_helper.rb
|
2862
2886
|
- spec/stress/win32/file_spec.rb
|
2863
2887
|
- spec/stress/win32/memory_spec.rb
|
@@ -2942,6 +2966,12 @@ files:
|
|
2942
2966
|
- spec/unit/chef_fs/path_util_spec.rb
|
2943
2967
|
- spec/unit/chef_spec.rb
|
2944
2968
|
- spec/unit/client_spec.rb
|
2969
|
+
- spec/unit/compliance/fetcher/automate_spec.rb
|
2970
|
+
- spec/unit/compliance/fetcher/chef_server_spec.rb
|
2971
|
+
- spec/unit/compliance/reporter/automate_spec.rb
|
2972
|
+
- spec/unit/compliance/reporter/chef_server_automate_spec.rb
|
2973
|
+
- spec/unit/compliance/reporter/compliance_enforcer_spec.rb
|
2974
|
+
- spec/unit/compliance/runner_spec.rb
|
2945
2975
|
- spec/unit/config_fetcher_spec.rb
|
2946
2976
|
- spec/unit/config_spec.rb
|
2947
2977
|
- spec/unit/cookbook/chefignore_spec.rb
|
@@ -3044,6 +3074,7 @@ files:
|
|
3044
3074
|
- spec/unit/knife/core/hashed_command_loader_spec.rb
|
3045
3075
|
- spec/unit/knife/core/node_editor_spec.rb
|
3046
3076
|
- spec/unit/knife/core/object_loader_spec.rb
|
3077
|
+
- spec/unit/knife/core/status_presenter_spec.rb
|
3047
3078
|
- spec/unit/knife/core/subcommand_loader_spec.rb
|
3048
3079
|
- spec/unit/knife/core/ui_spec.rb
|
3049
3080
|
- spec/unit/knife/core/windows_bootstrap_context_spec.rb
|
@@ -3403,6 +3434,7 @@ files:
|
|
3403
3434
|
- spec/unit/resource/systemd_unit_spec.rb
|
3404
3435
|
- spec/unit/resource/template_spec.rb
|
3405
3436
|
- spec/unit/resource/timezone_spec.rb
|
3437
|
+
- spec/unit/resource/user/windows_user_spec.rb
|
3406
3438
|
- spec/unit/resource/user_spec.rb
|
3407
3439
|
- spec/unit/resource/user_ulimit_spec.rb
|
3408
3440
|
- spec/unit/resource/windows_ad_join_spec.rb
|
@@ -3477,7 +3509,6 @@ files:
|
|
3477
3509
|
- spec/unit/util/dsc/resource_store.rb
|
3478
3510
|
- spec/unit/util/editor_spec.rb
|
3479
3511
|
- spec/unit/util/file_edit_spec.rb
|
3480
|
-
- spec/unit/util/powershell/cmdlet_spec.rb
|
3481
3512
|
- spec/unit/util/powershell/ps_credential_spec.rb
|
3482
3513
|
- spec/unit/util/selinux_spec.rb
|
3483
3514
|
- spec/unit/util/threaded_job_queue_spec.rb
|
@@ -3496,7 +3527,13 @@ files:
|
|
3496
3527
|
homepage: https://www.chef.io
|
3497
3528
|
licenses:
|
3498
3529
|
- Apache-2.0
|
3499
|
-
metadata:
|
3530
|
+
metadata:
|
3531
|
+
bug_tracker_uri: https://github.com/chef/chef/issues
|
3532
|
+
changelog_uri: https://github.com/chef/chef/blob/master/CHANGELOG.md
|
3533
|
+
documentation_uri: https://docs.chef.io/
|
3534
|
+
homepage_uri: https://www.chef.io
|
3535
|
+
mailing_list_uri: https://discourse.chef.io/
|
3536
|
+
source_code_uri: https://github.com/chef/chef/
|
3500
3537
|
post_install_message:
|
3501
3538
|
rdoc_options: []
|
3502
3539
|
require_paths:
|