chef 12.18.31-universal-mingw32 → 12.19.33-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 +5 -4
- data/README.md +12 -13
- data/VERSION +1 -1
- data/acceptance/Gemfile +4 -4
- data/acceptance/Gemfile.lock +70 -69
- data/chef-universal-mingw32.gemspec +2 -3
- data/chef.gemspec +6 -6
- data/lib/chef/api_client.rb +8 -10
- data/lib/chef/api_client_v1.rb +9 -11
- data/lib/chef/application/apply.rb +8 -10
- data/lib/chef/application/client.rb +1 -1
- data/lib/chef/application/exit_code.rb +3 -5
- data/lib/chef/application/knife.rb +2 -2
- data/lib/chef/application/windows_service.rb +29 -30
- data/lib/chef/application/windows_service_manager.rb +1 -1
- data/lib/chef/audit/audit_event_proxy.rb +2 -2
- data/lib/chef/audit/control_group_data.rb +1 -1
- data/lib/chef/chef_class.rb +1 -0
- data/lib/chef/chef_fs/chef_fs_data_store.rb +5 -7
- data/lib/chef/chef_fs/command_line.rb +15 -16
- data/lib/chef/chef_fs/data_handler/client_data_handler.rb +1 -1
- data/lib/chef/chef_fs/data_handler/container_data_handler.rb +1 -1
- data/lib/chef/chef_fs/data_handler/cookbook_data_handler.rb +1 -1
- data/lib/chef/chef_fs/data_handler/data_bag_item_data_handler.rb +1 -1
- data/lib/chef/chef_fs/data_handler/environment_data_handler.rb +1 -1
- data/lib/chef/chef_fs/data_handler/group_data_handler.rb +1 -1
- data/lib/chef/chef_fs/data_handler/node_data_handler.rb +1 -1
- data/lib/chef/chef_fs/data_handler/organization_data_handler.rb +1 -1
- data/lib/chef/chef_fs/data_handler/role_data_handler.rb +1 -1
- data/lib/chef/chef_fs/data_handler/user_data_handler.rb +1 -1
- data/lib/chef/chef_fs/file_pattern.rb +2 -2
- data/lib/chef/chef_fs/file_system.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/cookbook_dir.rb +5 -6
- data/lib/chef/chef_fs/file_system/chef_server/cookbook_file.rb +8 -10
- data/lib/chef/chef_fs/file_system/chef_server/data_bags_dir.rb +8 -10
- data/lib/chef/chef_fs/file_system/chef_server/nodes_dir.rb +10 -12
- data/lib/chef/chef_fs/file_system/chef_server/policies_dir.rb +28 -30
- data/lib/chef/chef_fs/file_system/chef_server/policy_group_entry.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/rest_list_dir.rb +27 -29
- data/lib/chef/chef_fs/file_system/chef_server/rest_list_entry.rb +18 -24
- data/lib/chef/chef_fs/file_system/memory/memory_file.rb +1 -1
- data/lib/chef/chef_fs/file_system/multiplexed_dir.rb +10 -12
- data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_cookbook_dir.rb +10 -12
- data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_cookbook_entry.rb +9 -13
- data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_root_dir.rb +2 -0
- data/lib/chef/chef_fs/file_system/repository/cookbooks_dir.rb +1 -1
- data/lib/chef/chef_fs/file_system/repository/nodes_dir.rb +3 -0
- data/lib/chef/chef_fs/parallelizer.rb +9 -11
- data/lib/chef/cookbook/cookbook_version_loader.rb +25 -31
- data/lib/chef/cookbook/metadata.rb +26 -26
- data/lib/chef/cookbook/syntax_check.rb +1 -1
- data/lib/chef/cookbook_version.rb +3 -3
- data/lib/chef/data_bag.rb +1 -1
- data/lib/chef/data_bag_item.rb +3 -3
- data/lib/chef/data_collector.rb +3 -4
- data/lib/chef/decorator.rb +1 -1
- data/lib/chef/deprecated.rb +30 -0
- data/lib/chef/dsl/audit.rb +2 -2
- data/lib/chef/dsl/declare_resource.rb +1 -1
- data/lib/chef/dsl/platform_introspection.rb +29 -31
- data/lib/chef/dsl/reboot_pending.rb +1 -1
- data/lib/chef/dsl/resources.rb +6 -8
- data/lib/chef/encrypted_data_bag_item.rb +2 -2
- data/lib/chef/environment.rb +9 -11
- data/lib/chef/event_loggers/windows_eventlog.rb +1 -1
- data/lib/chef/exceptions.rb +4 -1
- data/lib/chef/file_access_control/unix.rb +14 -14
- data/lib/chef/file_access_control/windows.rb +1 -1
- data/lib/chef/formatters/error_inspectors/api_error_formatting.rb +4 -5
- data/lib/chef/formatters/error_mapper.rb +6 -6
- data/lib/chef/http/api_versions.rb +50 -0
- data/lib/chef/http/validate_content_length.rb +2 -2
- data/lib/chef/json_compat.rb +6 -10
- data/lib/chef/key.rb +5 -5
- data/lib/chef/knife.rb +4 -4
- data/lib/chef/knife/cookbook_site_install.rb +2 -2
- data/lib/chef/knife/core/cookbook_scm_repo.rb +2 -2
- data/lib/chef/knife/core/gem_glob_loader.rb +1 -1
- data/lib/chef/knife/core/status_presenter.rb +1 -1
- data/lib/chef/knife/core/ui.rb +19 -25
- data/lib/chef/knife/data_bag_secret_options.rb +1 -1
- data/lib/chef/knife/deps.rb +32 -34
- data/lib/chef/knife/help.rb +1 -1
- data/lib/chef/knife/list.rb +1 -1
- data/lib/chef/knife/search.rb +2 -2
- data/lib/chef/knife/ssh.rb +37 -27
- data/lib/chef/knife/ssl_check.rb +1 -1
- data/lib/chef/knife/user_delete.rb +1 -1
- data/lib/chef/mash.rb +1 -1
- data/lib/chef/mixin/command.rb +2 -2
- data/lib/chef/mixin/create_path.rb +3 -5
- data/lib/chef/mixin/from_file.rb +2 -2
- data/lib/chef/mixin/get_source_from_package.rb +2 -2
- data/lib/chef/mixin/notifying_block.rb +7 -9
- data/lib/chef/mixin/params_validate.rb +3 -3
- data/lib/chef/mixin/securable.rb +1 -1
- data/lib/chef/mixin/shell_out.rb +23 -3
- data/lib/chef/mixin/unformatter.rb +2 -2
- data/lib/chef/mixin/uris.rb +4 -6
- data/lib/chef/mixin/versioned_api.rb +69 -0
- data/lib/chef/mixin/which.rb +25 -8
- data/lib/chef/mixin/windows_architecture_helper.rb +2 -2
- data/lib/chef/mixin/xml_escape.rb +3 -5
- data/lib/chef/monkey_patches/webrick-utils.rb +1 -1
- data/lib/chef/node.rb +8 -8
- data/lib/chef/node/attribute.rb +4 -4
- data/lib/chef/node/common_api.rb +5 -7
- data/lib/chef/org.rb +10 -12
- data/lib/chef/platform/provider_mapping.rb +7 -7
- data/lib/chef/platform/query_helpers.rb +1 -1
- data/lib/chef/policy_builder/policyfile.rb +1 -0
- data/lib/chef/property.rb +31 -0
- data/lib/chef/provider/batch.rb +1 -1
- data/lib/chef/provider/breakpoint.rb +1 -1
- data/lib/chef/provider/cookbook_file.rb +3 -3
- data/lib/chef/provider/cron.rb +38 -38
- data/lib/chef/provider/deploy.rb +81 -81
- data/lib/chef/provider/deploy/revision.rb +3 -5
- data/lib/chef/provider/directory.rb +32 -32
- data/lib/chef/provider/dsc_resource.rb +22 -6
- data/lib/chef/provider/env.rb +28 -28
- data/lib/chef/provider/env/windows.rb +1 -1
- data/lib/chef/provider/erl_call.rb +13 -13
- data/lib/chef/provider/execute.rb +5 -2
- data/lib/chef/provider/file.rb +49 -51
- data/lib/chef/provider/git.rb +55 -55
- data/lib/chef/provider/http_request.rb +36 -36
- data/lib/chef/provider/launchd.rb +2 -2
- data/lib/chef/provider/link.rb +50 -50
- data/lib/chef/provider/log.rb +2 -2
- data/lib/chef/provider/mdadm.rb +25 -25
- data/lib/chef/provider/mount/aix.rb +2 -2
- data/lib/chef/provider/mount/mount.rb +2 -2
- data/lib/chef/provider/ohai.rb +1 -1
- data/lib/chef/provider/osx_profile.rb +23 -23
- data/lib/chef/provider/package.rb +74 -56
- data/lib/chef/provider/package/aix.rb +55 -52
- data/lib/chef/provider/package/apt.rb +15 -13
- data/lib/chef/provider/package/cab.rb +49 -20
- data/lib/chef/provider/package/chocolatey.rb +9 -10
- data/lib/chef/provider/package/dnf.rb +20 -18
- data/lib/chef/provider/package/dnf/dnf_helper.py +1 -1
- data/lib/chef/provider/package/dnf/python_helper.rb +63 -26
- data/lib/chef/provider/package/dnf/version.rb +1 -1
- data/lib/chef/provider/package/dpkg.rb +8 -9
- data/lib/chef/provider/package/easy_install.rb +22 -22
- data/lib/chef/provider/package/freebsd/base.rb +10 -10
- data/lib/chef/provider/package/freebsd/pkg.rb +15 -15
- data/lib/chef/provider/package/freebsd/pkgng.rb +13 -15
- data/lib/chef/provider/package/freebsd/port.rb +7 -7
- data/lib/chef/provider/package/homebrew.rb +11 -10
- data/lib/chef/provider/package/ips.rb +18 -23
- data/lib/chef/provider/package/macports.rb +23 -23
- data/lib/chef/provider/package/msu.rb +11 -11
- data/lib/chef/provider/package/openbsd.rb +25 -22
- data/lib/chef/provider/package/pacman.rb +16 -16
- data/lib/chef/provider/package/paludis.rb +26 -27
- data/lib/chef/provider/package/portage.rb +22 -22
- data/lib/chef/provider/package/powershell.rb +17 -17
- data/lib/chef/provider/package/rpm.rb +25 -25
- data/lib/chef/provider/package/rubygems.rb +60 -60
- data/lib/chef/provider/package/smartos.rb +16 -16
- data/lib/chef/provider/package/solaris.rb +44 -44
- data/lib/chef/provider/package/windows.rb +3 -3
- data/lib/chef/provider/package/windows/exe.rb +6 -6
- data/lib/chef/provider/package/windows/msi.rb +6 -6
- data/lib/chef/provider/package/yum.rb +318 -268
- data/lib/chef/provider/package/yum/rpm_utils.rb +34 -34
- data/lib/chef/provider/package/yum/yum_cache.rb +12 -12
- data/lib/chef/provider/package/zypper.rb +11 -11
- data/lib/chef/provider/powershell_script.rb +15 -7
- data/lib/chef/provider/reboot.rb +10 -10
- data/lib/chef/provider/registry_key.rb +39 -39
- data/lib/chef/provider/remote_directory.rb +3 -3
- data/lib/chef/provider/remote_file.rb +3 -3
- data/lib/chef/provider/route.rb +1 -1
- data/lib/chef/provider/ruby_block.rb +3 -3
- data/lib/chef/provider/script.rb +42 -6
- data/lib/chef/provider/service.rb +49 -49
- data/lib/chef/provider/service/solaris.rb +1 -1
- data/lib/chef/provider/service/systemd.rb +1 -1
- data/lib/chef/provider/subversion.rb +39 -39
- data/lib/chef/provider/systemd_unit.rb +2 -0
- data/lib/chef/provider/template.rb +3 -3
- data/lib/chef/provider/user.rb +42 -42
- data/lib/chef/provider/whyrun_safe_ruby_block.rb +4 -4
- data/lib/chef/resource.rb +27 -16
- data/lib/chef/resource/apt_repository.rb +0 -1
- data/lib/chef/resource/chef_gem.rb +1 -1
- data/lib/chef/resource/dnf_package.rb +6 -3
- data/lib/chef/resource/dsc_resource.rb +9 -1
- data/lib/chef/resource/execute.rb +70 -6
- data/lib/chef/resource/file/verification/systemd_unit.rb +67 -0
- data/lib/chef/resource/freebsd_package.rb +1 -1
- data/lib/chef/resource/gem_package.rb +1 -1
- data/lib/chef/resource/launchd.rb +13 -1
- data/lib/chef/resource/package.rb +2 -2
- data/lib/chef/resource/registry_key.rb +1 -1
- data/lib/chef/resource/yum_package.rb +12 -3
- data/lib/chef/resource/yum_repository.rb +0 -1
- data/lib/chef/resource_collection/resource_collection_serialization.rb +3 -3
- data/lib/chef/resource_collection/resource_set.rb +2 -2
- data/lib/chef/resource_reporter.rb +1 -1
- data/lib/chef/run_context.rb +3 -3
- data/lib/chef/run_list/run_list_item.rb +1 -1
- data/lib/chef/run_list/versioned_recipe_list.rb +6 -6
- data/lib/chef/server_api.rb +2 -0
- data/lib/chef/server_api_versions.rb +40 -0
- data/lib/chef/shell.rb +1 -1
- data/lib/chef/shell/ext.rb +3 -3
- data/lib/chef/shell/shell_session.rb +1 -1
- data/lib/chef/user.rb +9 -11
- data/lib/chef/user_v1.rb +9 -11
- data/lib/chef/util/diff.rb +1 -1
- data/lib/chef/util/dsc/lcm_output_parser.rb +1 -1
- data/lib/chef/util/selinux.rb +1 -1
- data/lib/chef/util/windows/net_group.rb +18 -30
- data/lib/chef/util/windows/net_use.rb +7 -11
- data/lib/chef/util/windows/net_user.rb +11 -17
- data/lib/chef/util/windows/volume.rb +9 -15
- data/lib/chef/version.rb +1 -1
- data/lib/chef/version_class.rb +1 -1
- data/lib/chef/win32/api.rb +4 -6
- data/lib/chef/win32/api/file.rb +25 -31
- data/lib/chef/win32/api/installer.rb +2 -2
- data/lib/chef/win32/file.rb +4 -6
- data/lib/chef/win32/registry.rb +9 -9
- data/lib/chef/win32/security.rb +2 -2
- data/lib/chef/win32/security/acl.rb +2 -2
- data/lib/chef/win32/unicode.rb +2 -2
- data/lib/chef/win32/version.rb +1 -1
- data/spec/data/prefer_metadata_json/metadata.json +51 -0
- data/spec/data/prefer_metadata_json/metadata.rb +6 -0
- data/spec/data/prefer_metadata_json/recipes/default.rb +0 -0
- data/spec/functional/knife/ssh_spec.rb +5 -5
- data/spec/functional/resource/batch_spec.rb +5 -1
- data/spec/functional/resource/dsc_script_spec.rb +2 -4
- data/spec/functional/resource/execute_spec.rb +17 -0
- data/spec/functional/resource/user/dscl_spec.rb +2 -4
- data/spec/integration/client/client_spec.rb +33 -0
- data/spec/integration/recipes/recipe_dsl_spec.rb +58 -58
- data/spec/spec_helper.rb +4 -0
- data/spec/support/chef_helpers.rb +5 -7
- data/spec/support/platform_helpers.rb +6 -0
- data/spec/support/platforms/prof/gc.rb +4 -6
- data/spec/support/shared/context/client.rb +1 -1
- data/spec/support/shared/functional/execute_resource.rb +150 -0
- data/spec/support/shared/functional/windows_script.rb +74 -4
- data/spec/support/shared/unit/execute_resource.rb +37 -0
- data/spec/support/shared/unit/provider/file.rb +10 -0
- data/spec/unit/cookbook/cookbook_version_loader_spec.rb +9 -0
- data/spec/unit/cookbook/syntax_check_spec.rb +8 -2
- data/spec/unit/http/api_versions_spec.rb +69 -0
- data/spec/unit/knife/ssh_spec.rb +34 -36
- data/spec/unit/mixin/versioned_api_spec.rb +107 -0
- data/spec/unit/mixin/which.rb +160 -0
- data/spec/unit/platform_spec.rb +28 -1
- data/spec/unit/provider/deploy_spec.rb +1 -1
- data/spec/unit/provider/directory_spec.rb +10 -0
- data/spec/unit/provider/dsc_resource_spec.rb +175 -0
- data/spec/unit/provider/execute_spec.rb +0 -1
- data/spec/unit/provider/launchd_spec.rb +2 -2
- data/spec/unit/provider/package/aix_spec.rb +22 -22
- data/spec/unit/provider/package/apt_spec.rb +27 -27
- data/spec/unit/provider/package/cab_spec.rb +59 -5
- data/spec/unit/provider/package/dnf/python_helper_spec.rb +29 -0
- data/spec/unit/provider/package/dpkg_spec.rb +16 -16
- data/spec/unit/provider/package/easy_install_spec.rb +18 -18
- data/spec/unit/provider/package/freebsd/pkg_spec.rb +15 -15
- data/spec/unit/provider/package/freebsd/pkgng_spec.rb +9 -9
- data/spec/unit/provider/package/freebsd/port_spec.rb +9 -9
- data/spec/unit/provider/package/homebrew_spec.rb +9 -9
- data/spec/unit/provider/package/ips_spec.rb +37 -31
- data/spec/unit/provider/package/macports_spec.rb +10 -10
- data/spec/unit/provider/package/openbsd_spec.rb +10 -10
- data/spec/unit/provider/package/pacman_spec.rb +6 -6
- data/spec/unit/provider/package/paludis_spec.rb +7 -7
- data/spec/unit/provider/package/portage_spec.rb +6 -7
- data/spec/unit/provider/package/rpm_spec.rb +23 -23
- data/spec/unit/provider/package/rubygems_spec.rb +38 -38
- data/spec/unit/provider/package/solaris_spec.rb +15 -15
- data/spec/unit/provider/package/windows_spec.rb +2 -1
- data/spec/unit/provider/package/yum_spec.rb +51 -43
- data/spec/unit/provider/package/zypper_spec.rb +34 -34
- data/spec/unit/provider/package_spec.rb +8 -0
- data/spec/unit/provider/remote_file/sftp_spec.rb +3 -3
- data/spec/unit/provider/route_spec.rb +7 -1
- data/spec/unit/provider/script_spec.rb +49 -6
- data/spec/unit/resource/dsc_resource_spec.rb +6 -0
- data/spec/unit/resource/execute_spec.rb +214 -0
- data/spec/unit/resource/file/verification/systemd_unit_spec.rb +103 -0
- data/spec/unit/resource/freebsd_package_spec.rb +2 -2
- data/spec/unit/resource/package_spec.rb +5 -0
- data/spec/unit/resource/yum_package_spec.rb +42 -1
- data/spec/unit/resource_reporter_spec.rb +1 -1
- data/spec/unit/resource_spec.rb +18 -0
- data/spec/unit/server_api_versions_spec.rb +44 -0
- data/spec/unit/util/selinux_spec.rb +3 -14
- data/spec/unit/win32/error_spec.rb +67 -0
- data/spec/unit/win32/security_spec.rb +66 -0
- data/tasks/changelog.rb +1 -1
- data/tasks/dependencies.rb +20 -4
- metadata +39 -18
- data/lib/chef/monkey_patches/net-ssh-multi.rb +0 -141
data/lib/chef/api_client_v1.rb
CHANGED
@@ -190,7 +190,7 @@ class Chef
|
|
190
190
|
if inflate
|
191
191
|
response = Hash.new
|
192
192
|
Chef::Search::Query.new.search(:client) do |n|
|
193
|
-
n =
|
193
|
+
n = from_hash(n) if n.instance_of?(Hash)
|
194
194
|
response[n.name] = n
|
195
195
|
end
|
196
196
|
response
|
@@ -212,15 +212,13 @@ class Chef
|
|
212
212
|
|
213
213
|
# Save this client via the REST API, returns a hash including the private key
|
214
214
|
def save
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
raise e
|
223
|
-
end
|
215
|
+
update
|
216
|
+
rescue Net::HTTPServerException => e
|
217
|
+
# If that fails, go ahead and try and update it
|
218
|
+
if e.response.code == "404"
|
219
|
+
create
|
220
|
+
else
|
221
|
+
raise e
|
224
222
|
end
|
225
223
|
end
|
226
224
|
|
@@ -313,7 +311,7 @@ class Chef
|
|
313
311
|
|
314
312
|
new_client = chef_rest_v0.post("clients", payload)
|
315
313
|
end
|
316
|
-
Chef::ApiClientV1.from_hash(
|
314
|
+
Chef::ApiClientV1.from_hash(to_hash.merge(new_client))
|
317
315
|
end
|
318
316
|
|
319
317
|
# As a string
|
@@ -200,16 +200,14 @@ class Chef::Application::Apply < Chef::Application
|
|
200
200
|
end
|
201
201
|
|
202
202
|
def run_application
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
Chef::Application.fatal!("#{e.class}: #{e.message}", e)
|
212
|
-
end
|
203
|
+
parse_options
|
204
|
+
run_chef_recipe
|
205
|
+
Chef::Application.exit! "Exiting", 0
|
206
|
+
rescue SystemExit
|
207
|
+
raise
|
208
|
+
rescue Exception => e
|
209
|
+
Chef::Application.debug_stacktrace(e)
|
210
|
+
Chef::Application.fatal!("#{e.class}: #{e.message}", e)
|
213
211
|
end
|
214
212
|
|
215
213
|
# Get this party started
|
@@ -198,12 +198,10 @@ class Chef
|
|
198
198
|
end
|
199
199
|
|
200
200
|
def notify_on_deprecation(message)
|
201
|
-
|
202
|
-
|
203
|
-
rescue Chef::Exceptions::DeprecatedFeatureError
|
201
|
+
Chef.deprecated(:exit_code, message)
|
202
|
+
rescue Chef::Exceptions::DeprecatedFeatureError
|
204
203
|
# Have to rescue this, otherwise this unhandled error preempts
|
205
204
|
# the current exit code assignment.
|
206
|
-
end
|
207
205
|
end
|
208
206
|
|
209
207
|
def deprecation_warning
|
@@ -222,7 +220,7 @@ class Chef
|
|
222
220
|
|
223
221
|
def default_exit_code
|
224
222
|
if normalization_disabled? || normalization_not_configured?
|
225
|
-
|
223
|
+
DEPRECATED_RFC_062_EXIT_CODES[:DEPRECATED_FAILURE]
|
226
224
|
else
|
227
225
|
VALID_RFC_062_EXIT_CODES[:GENERIC_FAILURE]
|
228
226
|
end
|
@@ -203,11 +203,11 @@ class Chef::Application::Knife < Chef::Application
|
|
203
203
|
Chef::Log.error(fatal_message) if fatal_message
|
204
204
|
|
205
205
|
begin
|
206
|
-
|
206
|
+
parse_options
|
207
207
|
rescue OptionParser::InvalidOption => e
|
208
208
|
puts "#{e}\n"
|
209
209
|
end
|
210
|
-
puts
|
210
|
+
puts opt_parser
|
211
211
|
puts
|
212
212
|
Chef::Knife.list_commands
|
213
213
|
exit exitcode
|
@@ -183,39 +183,38 @@ class Chef
|
|
183
183
|
# The chef client will be started in a new process. We have used shell_out to start the chef-client.
|
184
184
|
# The log_location and config_file of the parent process is passed to the new chef-client process.
|
185
185
|
# We need to add the --no-fork, as by default it is set to fork=true.
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
186
|
+
|
187
|
+
Chef::Log.info "Starting chef-client in a new process"
|
188
|
+
# Pass config params to the new process
|
189
|
+
config_params = " --no-fork"
|
190
|
+
config_params += " -c #{Chef::Config[:config_file]}" unless Chef::Config[:config_file].nil?
|
191
|
+
# log_location might be an event logger and if so we cannot pass as a command argument
|
192
|
+
# but shed no tears! If the logger is an event logger, it must have been configured
|
193
|
+
# as such in the config file and chef-client will use that when no arg is passed here
|
194
|
+
config_params += " -L #{resolve_log_location}" if resolve_log_location.is_a?(String)
|
195
|
+
|
196
|
+
# Starts a new process and waits till the process exits
|
197
|
+
|
198
|
+
result = shell_out(
|
199
|
+
"chef-client.bat #{config_params}",
|
200
|
+
:timeout => Chef::Config[:windows_service][:watchdog_timeout],
|
201
|
+
:logger => Chef::Log
|
202
|
+
)
|
203
|
+
Chef::Log.debug "#{result.stdout}"
|
204
|
+
Chef::Log.debug "#{result.stderr}"
|
205
|
+
rescue Mixlib::ShellOut::CommandTimeout => e
|
206
|
+
Chef::Log.error "chef-client timed out\n(#{e})"
|
207
|
+
Chef::Log.error(<<-EOF)
|
208
208
|
Your chef-client run timed out. You can increase the time chef-client is given
|
209
209
|
to complete by configuring windows_service.watchdog_timeout in your client.rb.
|
210
210
|
EOF
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
end
|
211
|
+
rescue Mixlib::ShellOut::ShellCommandFailed => e
|
212
|
+
Chef::Log.warn "Not able to start chef-client in new process (#{e})"
|
213
|
+
rescue => e
|
214
|
+
Chef::Log.error e
|
215
|
+
ensure
|
216
|
+
# Once process exits, we log the current process' pid
|
217
|
+
Chef::Log.info "Child process exited (pid: #{Process.pid})"
|
219
218
|
end
|
220
219
|
|
221
220
|
def apply_config(config_file_path)
|
@@ -78,14 +78,14 @@ class Chef
|
|
78
78
|
# We know all of our examples each live in a top-level `control_group` block - get this name now
|
79
79
|
outermost_group_desc = describe_groups.shift
|
80
80
|
|
81
|
-
|
81
|
+
[outermost_group_desc, {
|
82
82
|
:name => example.description,
|
83
83
|
:desc => example.full_description,
|
84
84
|
:resource_type => resource_type,
|
85
85
|
:resource_name => resource_name,
|
86
86
|
:context => describe_groups,
|
87
87
|
:line_number => example.metadata[:line_number],
|
88
|
-
}
|
88
|
+
}]
|
89
89
|
end
|
90
90
|
|
91
91
|
end
|
data/lib/chef/chef_class.rb
CHANGED
@@ -30,6 +30,7 @@ require "chef/platform/provider_priority_map"
|
|
30
30
|
require "chef/platform/resource_priority_map"
|
31
31
|
require "chef/platform/provider_handler_map"
|
32
32
|
require "chef/platform/resource_handler_map"
|
33
|
+
require "chef/deprecated"
|
33
34
|
require "chef/event_dispatch/dsl"
|
34
35
|
require "chef/deprecated"
|
35
36
|
|
@@ -611,7 +611,7 @@ class Chef
|
|
611
611
|
private
|
612
612
|
|
613
613
|
def use_memory_store?(path)
|
614
|
-
|
614
|
+
path[0] == "sandboxes" || path[0] == "file_store" && path[1] == "checksums" || path == %w{environments _default}
|
615
615
|
end
|
616
616
|
|
617
617
|
def write_cookbook(path, data, *options)
|
@@ -779,15 +779,13 @@ class Chef
|
|
779
779
|
end
|
780
780
|
|
781
781
|
def path_always_exists?(path)
|
782
|
-
|
782
|
+
path.length == 1 && BASE_DIRNAMES.include?(path[0])
|
783
783
|
end
|
784
784
|
|
785
785
|
def with_entry(path)
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
raise ChefZero::DataStore::DataNotFoundError.new(to_zero_path(e.entry), e)
|
790
|
-
end
|
786
|
+
yield Chef::ChefFS::FileSystem.resolve_path(chef_fs, to_chef_fs_path(path))
|
787
|
+
rescue Chef::ChefFS::FileSystem::NotFoundError => e
|
788
|
+
raise ChefZero::DataStore::DataNotFoundError.new(to_zero_path(e.entry), e)
|
791
789
|
end
|
792
790
|
|
793
791
|
def with_parent_dir(path, *options)
|
@@ -266,26 +266,25 @@ class Chef
|
|
266
266
|
def diff_text(old_path, new_path, old_value, new_value)
|
267
267
|
# Copy to tempfiles before diffing
|
268
268
|
# TODO don't copy things that are already in files! Or find an in-memory diff algorithm
|
269
|
-
begin
|
270
|
-
new_tempfile = Tempfile.new("new")
|
271
|
-
new_tempfile.write(new_value)
|
272
|
-
new_tempfile.close
|
273
269
|
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
old_tempfile.close
|
270
|
+
new_tempfile = Tempfile.new("new")
|
271
|
+
new_tempfile.write(new_value)
|
272
|
+
new_tempfile.close
|
278
273
|
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
274
|
+
begin
|
275
|
+
old_tempfile = Tempfile.new("old")
|
276
|
+
old_tempfile.write(old_value)
|
277
|
+
old_tempfile.close
|
278
|
+
|
279
|
+
result = Chef::Util::Diff.new.udiff(old_tempfile.path, new_tempfile.path)
|
280
|
+
result = result.gsub(/^--- #{old_tempfile.path}/, "--- #{old_path}")
|
281
|
+
result = result.gsub(/^\+\+\+ #{new_tempfile.path}/, "+++ #{new_path}")
|
282
|
+
result
|
286
283
|
ensure
|
287
|
-
|
284
|
+
old_tempfile.close!
|
288
285
|
end
|
286
|
+
ensure
|
287
|
+
new_tempfile.close!
|
289
288
|
end
|
290
289
|
end
|
291
290
|
end
|
@@ -84,7 +84,7 @@ class Chef
|
|
84
84
|
# Otherwise, it's possible we could match: the path matches to this point, and the pattern is longer than the path.
|
85
85
|
# TODO There is one edge case where the double star comes after some characters like abc**def--we could check whether the next
|
86
86
|
# bit of path starts with abc in that case.
|
87
|
-
|
87
|
+
true
|
88
88
|
end
|
89
89
|
|
90
90
|
# Returns the immediate child of a path that would be matched
|
@@ -114,7 +114,7 @@ class Chef
|
|
114
114
|
path = path[1, path.length - 1] if Chef::ChefFS::PathUtils.is_absolute?(path)
|
115
115
|
dirs_in_path = Chef::ChefFS::PathUtils.split(path).length
|
116
116
|
return nil if exact_parts.length <= dirs_in_path
|
117
|
-
|
117
|
+
exact_parts[dirs_in_path]
|
118
118
|
end
|
119
119
|
|
120
120
|
# If this pattern represents an exact path, returns the exact path.
|
@@ -73,17 +73,16 @@ class Chef
|
|
73
73
|
# Since we're ignoring the rules and doing a network request here,
|
74
74
|
# we need to make sure we don't rethrow the exception. (child(name)
|
75
75
|
# is not supposed to fail.)
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
end
|
76
|
+
|
77
|
+
children.find { |child| child.name == name }
|
78
|
+
rescue Chef::ChefFS::FileSystem::NotFoundError
|
79
|
+
nil
|
81
80
|
end
|
82
81
|
|
83
82
|
def can_have_child?(name, is_dir)
|
84
83
|
# A cookbook's root may not have directories unless they are segment directories
|
85
84
|
return name != "root_files" && COOKBOOK_SEGMENT_INFO.keys.include?(name.to_sym) if is_dir
|
86
|
-
|
85
|
+
true
|
87
86
|
end
|
88
87
|
|
89
88
|
def children
|