chef 15.1.36-universal-mingw32 → 15.2.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/bin/knife +0 -0
- data/ext/win32-eventlog/Rakefile +1 -1
- data/lib/chef.rb +1 -2
- data/lib/chef/action_collection.rb +8 -0
- data/lib/chef/api_client.rb +2 -2
- data/lib/chef/api_client/registration.rb +8 -7
- data/lib/chef/api_client_v1.rb +2 -1
- data/lib/chef/application.rb +1 -0
- data/lib/chef/application/apply.rb +1 -1
- data/lib/chef/application/base.rb +440 -0
- data/lib/chef/application/client.rb +6 -389
- data/lib/chef/application/solo.rb +11 -258
- data/lib/chef/application/windows_service.rb +3 -3
- data/lib/chef/application/windows_service_manager.rb +3 -3
- data/lib/chef/blacklist.rb +1 -1
- data/lib/chef/chef_fs/chef_fs_data_store.rb +15 -7
- data/lib/chef/chef_fs/command_line.rb +6 -1
- data/lib/chef/chef_fs/config.rb +3 -2
- data/lib/chef/chef_fs/data_handler/container_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/data_handler_base.rb +1 -1
- data/lib/chef/chef_fs/data_handler/organization_data_handler.rb +1 -1
- data/lib/chef/chef_fs/data_handler/policy_data_handler.rb +2 -2
- data/lib/chef/chef_fs/file_pattern.rb +13 -7
- data/lib/chef/chef_fs/file_system.rb +3 -2
- data/lib/chef/chef_fs/file_system/base_fs_object.rb +13 -6
- data/lib/chef/chef_fs/file_system/chef_server/chef_server_root_dir.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/cookbook_artifacts_dir.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/cookbook_dir.rb +8 -5
- data/lib/chef/chef_fs/file_system/chef_server/cookbook_file.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/cookbook_subdir.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/cookbooks_dir.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/data_bag_dir.rb +3 -2
- data/lib/chef/chef_fs/file_system/chef_server/environments_dir.rb +4 -2
- data/lib/chef/chef_fs/file_system/chef_server/policies_dir.rb +1 -0
- data/lib/chef/chef_fs/file_system/chef_server/rest_list_dir.rb +1 -0
- data/lib/chef/chef_fs/file_system/chef_server/versioned_cookbooks_dir.rb +1 -1
- data/lib/chef/chef_fs/file_system/memory/memory_dir.rb +1 -1
- data/lib/chef/chef_fs/file_system/repository/acl.rb +1 -1
- data/lib/chef/chef_fs/file_system/repository/base_file.rb +2 -1
- data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_cookbook_dir.rb +6 -2
- data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_cookbook_entry.rb +6 -4
- data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_root_dir.rb +6 -4
- data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_versioned_cookbook_dir.rb +1 -0
- data/lib/chef/chef_fs/file_system/repository/directory.rb +5 -1
- data/lib/chef/chef_fs/file_system/repository/file_system_entry.rb +4 -2
- data/lib/chef/chef_fs/file_system_cache.rb +1 -0
- data/lib/chef/chef_fs/parallelizer/parallel_enumerable.rb +2 -1
- data/lib/chef/chef_fs/path_utils.rb +3 -0
- data/lib/chef/client.rb +4 -2
- data/lib/chef/config.rb +1 -1
- data/lib/chef/cookbook/cookbook_version_loader.rb +6 -3
- data/lib/chef/cookbook/file_system_file_vendor.rb +1 -0
- data/lib/chef/cookbook/file_vendor.rb +1 -0
- data/lib/chef/cookbook/gem_installer.rb +1 -0
- data/lib/chef/cookbook/manifest_v0.rb +1 -0
- data/lib/chef/cookbook/metadata.rb +11 -9
- data/lib/chef/cookbook/remote_file_vendor.rb +3 -2
- data/lib/chef/cookbook/synchronizer.rb +6 -4
- data/lib/chef/cookbook/syntax_check.rb +4 -0
- data/lib/chef/cookbook_loader.rb +1 -0
- data/lib/chef/cookbook_manifest.rb +4 -2
- data/lib/chef/cookbook_site_streaming_uploader.rb +1 -1
- data/lib/chef/cookbook_uploader.rb +2 -2
- data/lib/chef/cookbook_version.rb +10 -9
- data/lib/chef/data_bag.rb +2 -1
- data/lib/chef/data_bag_item.rb +6 -3
- data/lib/chef/data_collector.rb +16 -8
- data/lib/chef/data_collector/run_end_message.rb +2 -0
- data/lib/chef/decorator.rb +5 -6
- data/lib/chef/deprecated.rb +1 -0
- data/lib/chef/dsl/data_query.rb +1 -1
- data/lib/chef/dsl/declare_resource.rb +2 -0
- data/lib/chef/dsl/platform_introspection.rb +3 -1
- data/lib/chef/encrypted_data_bag_item.rb +7 -4
- data/lib/chef/encrypted_data_bag_item/assertions.rb +1 -1
- data/lib/chef/encrypted_data_bag_item/check_encrypted.rb +1 -0
- data/lib/chef/encrypted_data_bag_item/decryptor.rb +4 -2
- data/lib/chef/encrypted_data_bag_item/encryptor.rb +1 -0
- data/lib/chef/environment.rb +7 -5
- data/lib/chef/event_dispatch/base.rb +86 -172
- data/lib/chef/event_dispatch/dispatcher.rb +2 -1
- data/lib/chef/event_loggers/base.rb +2 -1
- data/lib/chef/exceptions.rb +6 -7
- data/lib/chef/file_access_control/unix.rb +7 -4
- data/lib/chef/file_access_control/windows.rb +17 -8
- data/lib/chef/file_cache.rb +2 -1
- data/lib/chef/file_content_management/deploy.rb +2 -2
- data/lib/chef/formatters/base.rb +3 -4
- data/lib/chef/formatters/doc.rb +21 -33
- data/lib/chef/formatters/error_inspectors/cookbook_resolve_error_inspector.rb +3 -2
- data/lib/chef/formatters/error_inspectors/resource_failure_inspector.rb +3 -1
- data/lib/chef/formatters/indentable_output_stream.rb +3 -3
- data/lib/chef/formatters/minimal.rb +21 -42
- data/lib/chef/guard_interpreter/resource_guard_interpreter.rb +1 -1
- data/lib/chef/handler.rb +1 -2
- data/lib/chef/http.rb +23 -18
- data/lib/chef/http/api_versions.rb +1 -2
- data/lib/chef/http/auth_credentials.rb +1 -0
- data/lib/chef/http/basic_client.rb +1 -1
- data/lib/chef/http/decompressor.rb +1 -0
- data/lib/chef/http/json_output.rb +2 -1
- data/lib/chef/http/json_to_model_output.rb +1 -1
- data/lib/chef/http/remote_request_id.rb +1 -2
- data/lib/chef/http/socketless_chef_zero_client.rb +3 -2
- data/lib/chef/http/ssl_policies.rb +3 -0
- data/lib/chef/http/validate_content_length.rb +2 -2
- data/lib/chef/json_compat.rb +1 -1
- data/lib/chef/key.rb +8 -6
- data/lib/chef/knife.rb +6 -5
- data/lib/chef/knife/bootstrap.rb +19 -12
- data/lib/chef/knife/bootstrap/chef_vault_handler.rb +1 -0
- data/lib/chef/knife/bootstrap/client_builder.rb +1 -0
- data/lib/chef/knife/bootstrap/train_connector.rb +23 -17
- data/lib/chef/knife/client_bulk_delete.rb +4 -3
- data/lib/chef/knife/client_create.rb +13 -13
- data/lib/chef/knife/client_delete.rb +3 -3
- data/lib/chef/knife/config_get.rb +8 -8
- data/lib/chef/knife/config_list_profiles.rb +4 -4
- data/lib/chef/knife/cookbook_delete.rb +1 -1
- data/lib/chef/knife/cookbook_download.rb +12 -12
- data/lib/chef/knife/cookbook_show.rb +10 -10
- data/lib/chef/knife/cookbook_upload.rb +5 -5
- data/lib/chef/knife/core/bootstrap_context.rb +1 -1
- data/lib/chef/knife/core/cookbook_scm_repo.rb +1 -1
- data/lib/chef/knife/core/gem_glob_loader.rb +2 -2
- data/lib/chef/knife/core/generic_presenter.rb +4 -4
- data/lib/chef/knife/core/node_presenter.rb +17 -17
- data/lib/chef/knife/core/object_loader.rb +1 -1
- data/lib/chef/knife/core/status_presenter.rb +5 -5
- data/lib/chef/knife/core/subcommand_loader.rb +3 -2
- data/lib/chef/knife/core/text_formatter.rb +4 -4
- data/lib/chef/knife/core/ui.rb +9 -5
- data/lib/chef/knife/data_bag_create.rb +1 -0
- data/lib/chef/knife/data_bag_from_file.rb +1 -1
- data/lib/chef/knife/data_bag_secret_options.rb +13 -13
- data/lib/chef/knife/data_bag_show.rb +2 -2
- data/lib/chef/knife/deps.rb +6 -6
- data/lib/chef/knife/edit.rb +2 -2
- data/lib/chef/knife/environment_compare.rb +1 -0
- data/lib/chef/knife/environment_from_file.rb +3 -3
- data/lib/chef/knife/key_create_base.rb +12 -12
- data/lib/chef/knife/key_edit_base.rb +15 -15
- data/lib/chef/knife/key_list.rb +3 -1
- data/lib/chef/knife/key_list_base.rb +9 -9
- data/lib/chef/knife/list.rb +5 -5
- data/lib/chef/knife/node_bulk_delete.rb +1 -0
- data/lib/chef/knife/node_edit.rb +1 -1
- data/lib/chef/knife/node_environment_set.rb +1 -2
- data/lib/chef/knife/node_run_list_add.rb +2 -2
- data/lib/chef/knife/node_run_list_remove.rb +2 -2
- data/lib/chef/knife/node_run_list_set.rb +2 -2
- data/lib/chef/knife/null.rb +1 -2
- data/lib/chef/knife/role_bulk_delete.rb +1 -0
- data/lib/chef/knife/role_env_run_list_add.rb +2 -2
- data/lib/chef/knife/role_env_run_list_set.rb +2 -2
- data/lib/chef/knife/role_run_list_add.rb +2 -2
- data/lib/chef/knife/role_run_list_set.rb +2 -2
- data/lib/chef/knife/search.rb +4 -4
- data/lib/chef/knife/ssh.rb +13 -9
- data/lib/chef/knife/supermarket_download.rb +1 -1
- data/lib/chef/knife/supermarket_install.rb +5 -5
- data/lib/chef/knife/supermarket_list.rb +1 -1
- data/lib/chef/knife/supermarket_share.rb +3 -2
- data/lib/chef/knife/supermarket_show.rb +1 -1
- data/lib/chef/knife/supermarket_unshare.rb +1 -0
- data/lib/chef/knife/tag_delete.rb +1 -1
- data/lib/chef/knife/xargs.rb +2 -2
- data/lib/chef/log/syslog.rb +2 -2
- data/lib/chef/log/winevt.rb +1 -2
- data/lib/chef/mash.rb +2 -2
- data/lib/chef/mixin/api_version_request_handling.rb +1 -1
- data/lib/chef/mixin/checksum.rb +1 -0
- data/lib/chef/mixin/convert_to_class_name.rb +2 -1
- data/lib/chef/mixin/create_path.rb +2 -2
- data/lib/chef/mixin/deep_merge.rb +5 -5
- data/lib/chef/mixin/get_source_from_package.rb +1 -0
- data/lib/chef/mixin/homebrew_user.rb +2 -1
- data/lib/chef/mixin/openssl_helper.rb +10 -6
- data/lib/chef/mixin/params_validate.rb +21 -13
- data/lib/chef/mixin/powershell_out.rb +1 -1
- data/lib/chef/mixin/powershell_type_coercions.rb +2 -2
- data/lib/chef/mixin/properties.rb +13 -10
- data/lib/chef/mixin/securable.rb +3 -3
- data/lib/chef/mixin/shell_out.rb +1 -0
- data/lib/chef/mixin/template.rb +2 -1
- data/lib/chef/mixin/user_context.rb +1 -1
- data/lib/chef/mixin/which.rb +1 -0
- data/lib/chef/mixin/windows_architecture_helper.rb +4 -4
- data/lib/chef/mixin/windows_env_helper.rb +2 -2
- data/lib/chef/monkey_patches/net_http.rb +1 -1
- data/lib/chef/monkey_patches/webrick-utils.rb +6 -4
- data/lib/chef/node.rb +24 -17
- data/lib/chef/node/attribute.rb +122 -113
- data/lib/chef/node/attribute_collections.rb +1 -1
- data/lib/chef/node/common_api.rb +8 -2
- data/lib/chef/node/immutable_collections.rb +1 -1
- data/lib/chef/node/mixin/immutablize_array.rb +142 -142
- data/lib/chef/node/mixin/immutablize_hash.rb +131 -131
- data/lib/chef/node_map.rb +18 -3
- data/lib/chef/null_logger.rb +8 -16
- data/lib/chef/org.rb +4 -4
- data/lib/chef/platform/query_helpers.rb +3 -0
- data/lib/chef/platform/rebooter.rb +1 -1
- data/lib/chef/platform/service_helpers.rb +2 -2
- data/lib/chef/policy_builder/expand_node_object.rb +4 -4
- data/lib/chef/policy_builder/policyfile.rb +4 -4
- data/lib/chef/powershell.rb +2 -0
- data/lib/chef/property.rb +7 -4
- data/lib/chef/provider.rb +9 -12
- data/lib/chef/provider/apt_preference.rb +1 -2
- data/lib/chef/provider/apt_repository.rb +1 -2
- data/lib/chef/provider/apt_update.rb +2 -3
- data/lib/chef/provider/cookbook_file.rb +1 -0
- data/lib/chef/provider/cron.rb +6 -5
- data/lib/chef/provider/cron/unix.rb +1 -0
- data/lib/chef/provider/dsc_resource.rb +2 -3
- data/lib/chef/provider/dsc_script.rb +2 -2
- data/lib/chef/provider/execute.rb +1 -1
- data/lib/chef/provider/file.rb +5 -3
- data/lib/chef/provider/git.rb +4 -3
- data/lib/chef/provider/group.rb +7 -3
- data/lib/chef/provider/group/aix.rb +2 -0
- data/lib/chef/provider/group/dscl.rb +6 -3
- data/lib/chef/provider/group/groupadd.rb +1 -0
- data/lib/chef/provider/group/groupmod.rb +1 -1
- data/lib/chef/provider/group/pw.rb +3 -3
- data/lib/chef/provider/group/suse.rb +2 -2
- data/lib/chef/provider/group/usermod.rb +1 -0
- data/lib/chef/provider/group/windows.rb +1 -1
- data/lib/chef/provider/http_request.rb +1 -1
- data/lib/chef/provider/ifconfig.rb +12 -6
- data/lib/chef/provider/ifconfig/aix.rb +1 -0
- data/lib/chef/provider/ifconfig/debian.rb +1 -0
- data/lib/chef/provider/launchd.rb +16 -13
- data/lib/chef/provider/lwrp_base.rb +1 -2
- data/lib/chef/provider/mount.rb +1 -0
- data/lib/chef/provider/mount/aix.rb +6 -6
- data/lib/chef/provider/mount/mount.rb +5 -4
- data/lib/chef/provider/mount/solaris.rb +4 -4
- data/lib/chef/provider/package.rb +9 -6
- data/lib/chef/provider/package/apt.rb +4 -3
- data/lib/chef/provider/package/bff.rb +1 -0
- data/lib/chef/provider/package/cab.rb +4 -2
- data/lib/chef/provider/package/chocolatey.rb +5 -2
- data/lib/chef/provider/package/dnf.rb +1 -1
- data/lib/chef/provider/package/dnf/dnf_helper.py +15 -1
- data/lib/chef/provider/package/dnf/python_helper.rb +1 -0
- data/lib/chef/provider/package/dpkg.rb +4 -4
- data/lib/chef/provider/package/freebsd/base.rb +3 -2
- data/lib/chef/provider/package/freebsd/pkgng.rb +2 -2
- data/lib/chef/provider/package/homebrew.rb +1 -1
- data/lib/chef/provider/package/macports.rb +1 -0
- data/lib/chef/provider/package/msu.rb +3 -1
- data/lib/chef/provider/package/openbsd.rb +1 -1
- data/lib/chef/provider/package/paludis.rb +1 -0
- data/lib/chef/provider/package/portage.rb +2 -2
- data/lib/chef/provider/package/powershell.rb +3 -2
- data/lib/chef/provider/package/rpm.rb +1 -0
- data/lib/chef/provider/package/rubygems.rb +5 -3
- data/lib/chef/provider/package/smartos.rb +1 -0
- data/lib/chef/provider/package/snap.rb +5 -1
- data/lib/chef/provider/package/solaris.rb +2 -0
- data/lib/chef/provider/package/windows/exe.rb +5 -5
- data/lib/chef/provider/package/windows/msi.rb +8 -7
- data/lib/chef/provider/package/windows/registry_uninstall_entry.rb +1 -0
- data/lib/chef/provider/package/yum.rb +5 -2
- data/lib/chef/provider/package/yum/python_helper.rb +2 -1
- data/lib/chef/provider/package/zypper.rb +1 -1
- data/lib/chef/provider/reboot.rb +1 -1
- data/lib/chef/provider/registry_key.rb +2 -2
- data/lib/chef/provider/remote_directory.rb +1 -1
- data/lib/chef/provider/remote_file.rb +10 -9
- data/lib/chef/provider/remote_file/fetcher.rb +3 -2
- data/lib/chef/provider/remote_file/local_file.rb +1 -1
- data/lib/chef/provider/route.rb +4 -2
- data/lib/chef/provider/service/aixinit.rb +1 -1
- data/lib/chef/provider/service/arch.rb +2 -1
- data/lib/chef/provider/service/debian.rb +12 -11
- data/lib/chef/provider/service/freebsd.rb +1 -1
- data/lib/chef/provider/service/openbsd.rb +7 -7
- data/lib/chef/provider/service/redhat.rb +2 -2
- data/lib/chef/provider/service/simple.rb +2 -1
- data/lib/chef/provider/service/systemd.rb +2 -2
- data/lib/chef/provider/service/upstart.rb +3 -2
- data/lib/chef/provider/service/windows.rb +7 -6
- data/lib/chef/provider/subversion.rb +4 -1
- data/lib/chef/provider/template.rb +1 -0
- data/lib/chef/provider/user.rb +5 -1
- data/lib/chef/provider/user/aix.rb +3 -0
- data/lib/chef/provider/user/dscl.rb +8 -3
- data/lib/chef/provider/user/linux.rb +1 -0
- data/lib/chef/provider/user/pw.rb +1 -0
- data/lib/chef/provider/user/solaris.rb +2 -0
- data/lib/chef/provider/user/windows.rb +2 -1
- data/lib/chef/provider/windows_env.rb +3 -0
- data/lib/chef/provider/windows_script.rb +1 -1
- data/lib/chef/provider/windows_task.rb +4 -3
- data/lib/chef/provider/yum_repository.rb +1 -2
- data/lib/chef/provider/zypper_repository.rb +2 -3
- data/lib/chef/recipe.rb +2 -1
- data/lib/chef/resource.rb +24 -15
- data/lib/chef/resource/apt_package.rb +9 -9
- data/lib/chef/resource/apt_preference.rb +9 -9
- data/lib/chef/resource/apt_repository.rb +86 -23
- data/lib/chef/resource/apt_update.rb +2 -2
- data/lib/chef/resource/archive_file.rb +13 -13
- data/lib/chef/resource/build_essential.rb +5 -4
- data/lib/chef/resource/cab_package.rb +9 -9
- data/lib/chef/resource/chef_gem.rb +4 -4
- data/lib/chef/resource/chef_handler.rb +8 -7
- data/lib/chef/resource/chocolatey_config.rb +3 -3
- data/lib/chef/resource/chocolatey_feature.rb +2 -2
- data/lib/chef/resource/chocolatey_package.rb +8 -8
- data/lib/chef/resource/chocolatey_source.rb +3 -3
- data/lib/chef/resource/cookbook_file.rb +4 -4
- data/lib/chef/resource/cron.rb +12 -12
- data/lib/chef/resource/cron_access.rb +2 -2
- data/lib/chef/resource/cron_d.rb +45 -38
- data/lib/chef/resource/directory.rb +2 -2
- data/lib/chef/resource/dmg_package.rb +26 -26
- data/lib/chef/resource/dnf_package.rb +20 -20
- data/lib/chef/resource/dpkg_package.rb +5 -5
- data/lib/chef/resource/dsc_resource.rb +7 -7
- data/lib/chef/resource/dsc_script.rb +9 -4
- data/lib/chef/resource/execute.rb +14 -14
- data/lib/chef/resource/file.rb +4 -4
- data/lib/chef/resource/file/verification.rb +2 -0
- data/lib/chef/resource/file/verification/systemd_unit.rb +1 -0
- data/lib/chef/resource/gem_package.rb +7 -7
- data/lib/chef/resource/git.rb +2 -2
- data/lib/chef/resource/group.rb +5 -5
- data/lib/chef/resource/homebrew_cask.rb +17 -17
- data/lib/chef/resource/homebrew_package.rb +1 -1
- data/lib/chef/resource/homebrew_tap.rb +18 -18
- data/lib/chef/resource/hostname.rb +11 -11
- data/lib/chef/resource/http_request.rb +1 -1
- data/lib/chef/resource/ifconfig.rb +26 -26
- data/lib/chef/resource/ips_package.rb +2 -2
- data/lib/chef/resource/kernel_module.rb +25 -7
- data/lib/chef/resource/launchd.rb +105 -105
- data/lib/chef/resource/link.rb +10 -10
- data/lib/chef/resource/locale.rb +20 -20
- data/lib/chef/resource/log.rb +4 -4
- data/lib/chef/resource/lwrp_base.rb +1 -0
- data/lib/chef/resource/macos_userdefaults.rb +17 -16
- data/lib/chef/resource/macosx_service.rb +1 -1
- data/lib/chef/resource/mdadm.rb +14 -14
- data/lib/chef/resource/mount.rb +24 -24
- data/lib/chef/resource/msu_package.rb +8 -8
- data/lib/chef/resource/ohai.rb +1 -1
- data/lib/chef/resource/ohai_hint.rb +7 -5
- data/lib/chef/resource/openssl_dhparam.rb +14 -14
- data/lib/chef/resource/openssl_ec_private_key.rb +16 -16
- data/lib/chef/resource/openssl_ec_public_key.rb +9 -9
- data/lib/chef/resource/openssl_rsa_private_key.rb +17 -17
- data/lib/chef/resource/openssl_rsa_public_key.rb +9 -9
- data/lib/chef/resource/openssl_x509_certificate.rb +34 -34
- data/lib/chef/resource/openssl_x509_crl.rb +17 -17
- data/lib/chef/resource/openssl_x509_request.rb +20 -20
- data/lib/chef/resource/osx_profile.rb +5 -5
- data/lib/chef/resource/package.rb +9 -9
- data/lib/chef/resource/paludis_package.rb +2 -2
- data/lib/chef/resource/powershell_package.rb +8 -8
- data/lib/chef/resource/powershell_package_source.rb +13 -13
- data/lib/chef/resource/reboot.rb +4 -4
- data/lib/chef/resource/registry_key.rb +5 -3
- data/lib/chef/resource/remote_directory.rb +20 -20
- data/lib/chef/resource/remote_file.rb +8 -7
- data/lib/chef/resource/resource_notification.rb +4 -3
- data/lib/chef/resource/rhsm_errata.rb +2 -2
- data/lib/chef/resource/rhsm_errata_level.rb +4 -4
- data/lib/chef/resource/rhsm_register.rb +14 -14
- data/lib/chef/resource/rhsm_repo.rb +3 -3
- data/lib/chef/resource/rhsm_subscription.rb +2 -2
- data/lib/chef/resource/route.rb +11 -11
- data/lib/chef/resource/scm.rb +18 -18
- data/lib/chef/resource/service.rb +27 -27
- data/lib/chef/resource/snap_package.rb +4 -4
- data/lib/chef/resource/ssh_known_hosts_entry.rb +19 -19
- data/lib/chef/resource/subversion.rb +10 -10
- data/lib/chef/resource/sudo.rb +38 -37
- data/lib/chef/resource/swap_file.rb +9 -9
- data/lib/chef/resource/sysctl.rb +20 -17
- data/lib/chef/resource/systemd_unit.rb +12 -12
- data/lib/chef/resource/template.rb +8 -8
- data/lib/chef/resource/timezone.rb +3 -2
- data/lib/chef/resource/user.rb +19 -19
- data/lib/chef/resource/user/dscl_user.rb +2 -2
- data/lib/chef/resource/user/windows_user.rb +2 -2
- data/lib/chef/resource/windows_ad_join.rb +17 -16
- data/lib/chef/resource/windows_auto_run.rb +8 -8
- data/lib/chef/resource/windows_certificate.rb +13 -13
- data/lib/chef/resource/windows_dfs_folder.rb +13 -12
- data/lib/chef/resource/windows_dfs_namespace.rb +18 -18
- data/lib/chef/resource/windows_dfs_server.rb +12 -12
- data/lib/chef/resource/windows_dns_record.rb +8 -8
- data/lib/chef/resource/windows_dns_zone.rb +6 -6
- data/lib/chef/resource/windows_env.rb +6 -6
- data/lib/chef/resource/windows_feature.rb +12 -12
- data/lib/chef/resource/windows_feature_dism.rb +20 -19
- data/lib/chef/resource/windows_feature_powershell.rb +24 -22
- data/lib/chef/resource/windows_firewall_rule.rb +34 -34
- data/lib/chef/resource/windows_font.rb +4 -4
- data/lib/chef/resource/windows_package.rb +5 -5
- data/lib/chef/resource/windows_pagefile.rb +9 -8
- data/lib/chef/resource/windows_path.rb +2 -2
- data/lib/chef/resource/windows_printer.rb +15 -15
- data/lib/chef/resource/windows_printer_port.rb +14 -14
- data/lib/chef/resource/windows_script.rb +1 -1
- data/lib/chef/resource/windows_service.rb +16 -16
- data/lib/chef/resource/windows_share.rb +27 -24
- data/lib/chef/resource/windows_shortcut.rb +7 -7
- data/lib/chef/resource/windows_task.rb +53 -51
- data/lib/chef/resource/windows_uac.rb +15 -15
- data/lib/chef/resource/windows_workgroup.rb +15 -14
- data/lib/chef/resource/yum_package.rb +24 -24
- data/lib/chef/resource/yum_repository.rb +44 -44
- data/lib/chef/resource/zypper_package.rb +9 -9
- data/lib/chef/resource/zypper_repository.rb +30 -30
- data/lib/chef/resource_builder.rb +1 -0
- data/lib/chef/resource_collection.rb +6 -4
- data/lib/chef/resource_collection/resource_collection_serialization.rb +4 -3
- data/lib/chef/resource_collection/resource_list.rb +5 -3
- data/lib/chef/resource_collection/resource_set.rb +12 -8
- data/lib/chef/resource_collection/stepable_iterator.rb +1 -0
- data/lib/chef/resource_definition.rb +5 -3
- data/lib/chef/resource_definition_list.rb +1 -1
- data/lib/chef/resource_inspector.rb +1 -1
- data/lib/chef/resource_reporter.rb +1 -1
- data/lib/chef/role.rb +9 -7
- data/lib/chef/run_context.rb +5 -5
- data/lib/chef/run_context/cookbook_compiler.rb +5 -1
- data/lib/chef/run_list.rb +5 -4
- data/lib/chef/run_list/run_list_expansion.rb +3 -2
- data/lib/chef/run_list/run_list_item.rb +5 -5
- data/lib/chef/run_list/versioned_recipe_list.rb +1 -1
- data/lib/chef/run_status.rb +1 -1
- data/lib/chef/runner.rb +2 -4
- data/lib/chef/search/query.rb +3 -3
- data/lib/chef/shell/ext.rb +2 -2
- data/lib/chef/shell/model_wrapper.rb +2 -1
- data/lib/chef/shell/shell_session.rb +1 -1
- data/lib/chef/train_transport.rb +3 -3
- data/lib/chef/user.rb +6 -6
- data/lib/chef/user_v1.rb +13 -11
- data/lib/chef/util/diff.rb +5 -2
- data/lib/chef/util/dsc/configuration_generator.rb +6 -6
- data/lib/chef/util/dsc/lcm_output_parser.rb +2 -2
- data/lib/chef/util/dsc/local_configuration_manager.rb +2 -2
- data/lib/chef/util/dsc/resource_store.rb +2 -2
- data/lib/chef/util/file_edit.rb +1 -0
- data/lib/chef/util/powershell/cmdlet.rb +1 -1
- data/lib/chef/util/threaded_job_queue.rb +1 -1
- data/lib/chef/util/windows/logon_session.rb +5 -5
- data/lib/chef/util/windows/net_use.rb +2 -2
- data/lib/chef/util/windows/net_user.rb +3 -2
- data/lib/chef/version.rb +1 -1
- data/lib/chef/version_class.rb +1 -1
- data/lib/chef/version_constraint.rb +1 -1
- data/lib/chef/whitelist.rb +1 -1
- data/lib/chef/win32/api/crypto.rb +11 -11
- data/lib/chef/win32/api/error.rb +4 -4
- data/lib/chef/win32/api/file.rb +38 -38
- data/lib/chef/win32/api/installer.rb +3 -3
- data/lib/chef/win32/api/memory.rb +4 -4
- data/lib/chef/win32/api/net.rb +38 -38
- data/lib/chef/win32/api/process.rb +2 -2
- data/lib/chef/win32/api/psapi.rb +1 -1
- data/lib/chef/win32/api/registry.rb +3 -3
- data/lib/chef/win32/api/security.rb +87 -87
- data/lib/chef/win32/api/synchronization.rb +5 -5
- data/lib/chef/win32/api/system.rb +7 -7
- data/lib/chef/win32/api/unicode.rb +3 -3
- data/lib/chef/win32/eventlog.rb +2 -2
- data/lib/chef/win32/file.rb +5 -2
- data/lib/chef/win32/file/info.rb +1 -0
- data/lib/chef/win32/file/version_info.rb +15 -14
- data/lib/chef/win32/memory.rb +1 -1
- data/lib/chef/win32/net.rb +8 -4
- data/lib/chef/win32/registry.rb +6 -1
- data/lib/chef/win32/security.rb +7 -2
- data/lib/chef/win32/security/acl.rb +2 -1
- data/lib/chef/win32/security/security_descriptor.rb +4 -2
- data/lib/chef/win32/security/sid.rb +11 -10
- data/lib/chef/win32/security/token.rb +3 -1
- data/lib/chef/win32/version.rb +3 -3
- data/spec/data/apt/chef-integration-test-1.0/debian/rules +0 -0
- data/spec/data/apt/chef-integration-test-1.1/debian/rules +0 -0
- data/spec/data/apt/chef-integration-test2-1.0/debian/rules +0 -0
- data/spec/functional/assets/chefinittest +0 -0
- data/spec/functional/assets/testchefsubsys +0 -0
- data/spec/functional/dsl/reboot_pending_spec.rb +2 -2
- data/spec/functional/event_loggers/windows_eventlog_spec.rb +6 -4
- data/spec/functional/file_content_management/deploy_strategies_spec.rb +21 -21
- data/spec/functional/knife/exec_spec.rb +1 -1
- data/spec/functional/knife/ssh_spec.rb +3 -3
- data/spec/functional/mixin/user_context_spec.rb +3 -1
- data/spec/functional/provider/remote_file/cache_control_data_spec.rb +0 -0
- data/spec/functional/rebooter_spec.rb +1 -1
- data/spec/functional/resource/aix_service_spec.rb +1 -1
- data/spec/functional/resource/aixinit_service_spec.rb +1 -1
- data/spec/functional/resource/chocolatey_package_spec.rb +2 -2
- data/spec/functional/resource/cookbook_file_spec.rb +1 -3
- data/spec/functional/resource/cron_spec.rb +1 -0
- data/spec/functional/resource/dnf_package_spec.rb +5 -5
- data/spec/functional/resource/dpkg_package_spec.rb +4 -4
- data/spec/functional/resource/dsc_resource_spec.rb +2 -1
- data/spec/functional/resource/dsc_script_spec.rb +7 -11
- data/spec/functional/resource/git_spec.rb +5 -5
- data/spec/functional/resource/group_spec.rb +15 -13
- data/spec/functional/resource/ifconfig_spec.rb +2 -2
- data/spec/functional/resource/link_spec.rb +2 -2
- data/spec/functional/resource/locale_spec.rb +4 -4
- data/spec/functional/resource/mount_spec.rb +3 -3
- data/spec/functional/resource/powershell_script_spec.rb +9 -8
- data/spec/functional/resource/reboot_spec.rb +1 -1
- data/spec/functional/resource/remote_file_spec.rb +2 -2
- data/spec/functional/resource/template_spec.rb +1 -1
- data/spec/functional/resource/user/windows_spec.rb +2 -2
- data/spec/functional/resource/windows_certificate_spec.rb +3 -3
- data/spec/functional/resource/windows_service_spec.rb +3 -3
- data/spec/functional/run_lock_spec.rb +3 -2
- data/spec/functional/util/powershell/cmdlet_spec.rb +1 -1
- data/spec/functional/win32/security_spec.rb +12 -7
- data/spec/functional/win32/service_manager_spec.rb +1 -1
- data/spec/integration/client/client_spec.rb +79 -81
- data/spec/integration/client/exit_code_spec.rb +2 -2
- data/spec/integration/client/ipv6_spec.rb +2 -2
- data/spec/integration/knife/chef_fs_data_store_spec.rb +25 -25
- data/spec/integration/knife/chef_repo_path_spec.rb +4 -4
- data/spec/integration/knife/config_get_spec.rb +1 -1
- data/spec/integration/knife/config_list_profiles_spec.rb +2 -1
- data/spec/integration/knife/cookbook_api_ipv6_spec.rb +1 -1
- data/spec/integration/knife/cookbook_download_spec.rb +1 -1
- data/spec/integration/knife/diff_spec.rb +2 -2
- data/spec/integration/knife/download_spec.rb +1 -1
- data/spec/integration/knife/redirection_spec.rb +1 -1
- data/spec/integration/knife/upload_spec.rb +2 -2
- data/spec/integration/recipes/accumulator_spec.rb +4 -4
- data/spec/integration/recipes/lwrp_inline_resources_spec.rb +5 -5
- data/spec/integration/recipes/lwrp_spec.rb +2 -2
- data/spec/integration/recipes/notifies_spec.rb +20 -20
- data/spec/integration/recipes/notifying_block_spec.rb +4 -4
- data/spec/integration/recipes/provider_choice.rb +1 -2
- data/spec/integration/recipes/recipe_dsl_spec.rb +9 -9
- data/spec/integration/recipes/remote_directory.rb +2 -2
- data/spec/integration/solo/solo_spec.rb +20 -20
- data/spec/spec_helper.rb +9 -11
- data/spec/stress/win32/security_spec.rb +1 -1
- data/spec/support/lib/chef/resource/zen_follower.rb +1 -1
- data/spec/support/lib/chef/resource/zen_master.rb +1 -1
- data/spec/support/mock/platform.rb +2 -2
- data/spec/support/platform_helpers.rb +14 -0
- data/spec/support/platforms/win32/spec_service.rb +6 -10
- data/spec/support/shared/functional/execute_resource.rb +4 -4
- data/spec/support/shared/functional/file_resource.rb +1 -3
- data/spec/support/shared/functional/http.rb +15 -39
- data/spec/support/shared/functional/securable_resource.rb +4 -8
- data/spec/support/shared/functional/win32_service.rb +1 -1
- data/spec/support/shared/functional/windows_script.rb +2 -1
- data/spec/support/shared/integration/app_server_support.rb +3 -4
- data/spec/support/shared/integration/integration_helper.rb +1 -0
- data/spec/support/shared/integration/knife_support.rb +5 -5
- data/spec/support/shared/unit/application_dot_d.rb +10 -4
- data/spec/support/shared/unit/file_system_support.rb +3 -2
- data/spec/support/shared/unit/platform_introspector.rb +12 -12
- data/spec/support/shared/unit/provider/file.rb +1 -1
- data/spec/support/shared/unit/script_resource.rb +1 -1
- data/spec/support/shared/unit/windows_script_resource.rb +1 -1
- data/spec/tiny_server.rb +1 -1
- data/spec/unit/api_client/registration_spec.rb +1 -1
- data/spec/unit/api_client_spec.rb +5 -5
- data/spec/unit/api_client_v1_spec.rb +6 -6
- data/spec/unit/application/client_spec.rb +8 -8
- data/spec/unit/application/exit_code_spec.rb +3 -2
- data/spec/unit/application/knife_spec.rb +1 -2
- data/spec/unit/chef_fs/config_spec.rb +3 -3
- data/spec/unit/chef_fs/file_system/repository/directory_spec.rb +1 -1
- data/spec/unit/chef_fs/parallelizer.rb +1 -1
- data/spec/unit/client_spec.rb +1 -1
- data/spec/unit/config_fetcher_spec.rb +1 -1
- data/spec/unit/cookbook/metadata_spec.rb +4 -4
- data/spec/unit/cookbook/synchronizer_spec.rb +4 -4
- data/spec/unit/cookbook_loader_spec.rb +10 -10
- data/spec/unit/cookbook_site_streaming_uploader_spec.rb +1 -2
- data/spec/unit/cookbook_version_file_specificity_spec.rb +9 -9
- data/spec/unit/data_bag_item_spec.rb +8 -8
- data/spec/unit/data_bag_spec.rb +1 -1
- data/spec/unit/data_collector_spec.rb +82 -0
- data/spec/unit/decorator_spec.rb +2 -2
- data/spec/unit/deprecated_spec.rb +2 -2
- data/spec/unit/dsl/data_query_spec.rb +3 -2
- data/spec/unit/dsl/declare_resource_spec.rb +1 -1
- data/spec/unit/dsl/platform_introspection_spec.rb +2 -2
- data/spec/unit/encrypted_data_bag_item/check_encrypted_spec.rb +2 -1
- data/spec/unit/encrypted_data_bag_item_spec.rb +2 -1
- data/spec/unit/environment_spec.rb +9 -9
- data/spec/unit/event_dispatch/dsl_spec.rb +1 -1
- data/spec/unit/file_content_management/deploy/mv_unix_spec.rb +3 -3
- data/spec/unit/file_content_management/deploy/mv_windows_spec.rb +2 -2
- data/spec/unit/formatters/error_inspectors/resource_failure_inspector_spec.rb +3 -3
- data/spec/unit/guard_interpreter/resource_guard_interpreter_spec.rb +1 -1
- data/spec/unit/http/authenticator_spec.rb +3 -2
- data/spec/unit/http/json_input_spec.rb +1 -1
- data/spec/unit/key_spec.rb +7 -7
- data/spec/unit/knife/bootstrap/train_connector_spec.rb +13 -8
- data/spec/unit/knife/bootstrap_spec.rb +22 -16
- data/spec/unit/knife/client_bulk_delete_spec.rb +4 -4
- data/spec/unit/knife/configure_client_spec.rb +1 -1
- data/spec/unit/knife/configure_spec.rb +1 -1
- data/spec/unit/knife/cookbook_bulk_delete_spec.rb +1 -1
- data/spec/unit/knife/cookbook_delete_spec.rb +2 -2
- data/spec/unit/knife/cookbook_download_spec.rb +2 -2
- data/spec/unit/knife/cookbook_metadata_spec.rb +4 -4
- data/spec/unit/knife/cookbook_upload_spec.rb +4 -2
- data/spec/unit/knife/core/gem_glob_loader_spec.rb +4 -4
- data/spec/unit/knife/core/hashed_command_loader_spec.rb +4 -2
- data/spec/unit/knife/core/node_editor_spec.rb +8 -8
- data/spec/unit/knife/core/windows_bootstrap_context_spec.rb +1 -2
- data/spec/unit/knife/data_bag_from_file_spec.rb +2 -1
- data/spec/unit/knife/data_bag_show_spec.rb +2 -1
- data/spec/unit/knife/key_create_spec.rb +1 -1
- data/spec/unit/knife/key_delete_spec.rb +3 -3
- data/spec/unit/knife/key_edit_spec.rb +4 -4
- data/spec/unit/knife/key_list_spec.rb +1 -1
- data/spec/unit/knife/key_show_spec.rb +3 -3
- data/spec/unit/knife/node_bulk_delete_spec.rb +3 -3
- data/spec/unit/knife/node_delete_spec.rb +2 -2
- data/spec/unit/knife/node_edit_spec.rb +1 -1
- data/spec/unit/knife/node_environment_set_spec.rb +6 -1
- data/spec/unit/knife/node_from_file_spec.rb +1 -1
- data/spec/unit/knife/node_policy_set_spec.rb +1 -1
- data/spec/unit/knife/node_run_list_add_spec.rb +1 -1
- data/spec/unit/knife/node_run_list_remove_spec.rb +1 -1
- data/spec/unit/knife/node_run_list_set_spec.rb +1 -1
- data/spec/unit/knife/node_show_spec.rb +1 -1
- data/spec/unit/knife/raw_spec.rb +2 -2
- data/spec/unit/knife/role_bulk_delete_spec.rb +2 -2
- data/spec/unit/knife/role_create_spec.rb +1 -1
- data/spec/unit/knife/role_delete_spec.rb +1 -1
- data/spec/unit/knife/role_edit_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_add_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_clear_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_remove_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_replace_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_set_spec.rb +1 -1
- data/spec/unit/knife/role_from_file_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_add_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_clear_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_remove_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_replace_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_set_spec.rb +1 -1
- data/spec/unit/knife/status_spec.rb +2 -1
- data/spec/unit/knife/supermarket_install_spec.rb +5 -4
- data/spec/unit/knife/supermarket_share_spec.rb +1 -1
- data/spec/unit/knife_spec.rb +35 -34
- data/spec/unit/lwrp_spec.rb +19 -19
- data/spec/unit/mixin/homebrew_user_spec.rb +1 -1
- data/spec/unit/mixin/params_validate_spec.rb +10 -10
- data/spec/unit/mixin/properties_spec.rb +4 -4
- data/spec/unit/mixin/shell_out_spec.rb +3 -3
- data/spec/unit/mixin/template_spec.rb +4 -8
- data/spec/unit/mixin/unformatter_spec.rb +1 -2
- data/spec/unit/mixin/user_context_spec.rb +1 -2
- data/spec/unit/mixin/which.rb +2 -0
- data/spec/unit/mixin/windows_architecture_helper_spec.rb +3 -3
- data/spec/unit/node/attribute_spec.rb +12 -12
- data/spec/unit/node/immutable_collections_spec.rb +50 -50
- data/spec/unit/node/vivid_mash_spec.rb +4 -4
- data/spec/unit/node_spec.rb +12 -12
- data/spec/unit/org_spec.rb +3 -3
- data/spec/unit/policy_builder/policyfile_spec.rb +2 -2
- data/spec/unit/property/state_spec.rb +26 -25
- data/spec/unit/property/validation_spec.rb +14 -13
- data/spec/unit/property_spec.rb +11 -10
- data/spec/unit/provider/apt_update_spec.rb +6 -6
- data/spec/unit/provider/cron_spec.rb +1 -1
- data/spec/unit/provider/dsc_resource_spec.rb +6 -3
- data/spec/unit/provider/dsc_script_spec.rb +1 -1
- data/spec/unit/provider/git_spec.rb +38 -38
- data/spec/unit/provider/group/dscl_spec.rb +1 -1
- data/spec/unit/provider/group/groupadd_spec.rb +1 -1
- data/spec/unit/provider/group_spec.rb +2 -3
- data/spec/unit/provider/launchd_spec.rb +16 -8
- data/spec/unit/provider/link_spec.rb +22 -11
- data/spec/unit/provider/mount/mount_spec.rb +31 -31
- data/spec/unit/provider/mount/solaris_spec.rb +11 -11
- data/spec/unit/provider/ohai_spec.rb +1 -1
- data/spec/unit/provider/osx_profile_spec.rb +5 -7
- data/spec/unit/provider/package/apt_spec.rb +5 -5
- data/spec/unit/provider/package/bff_spec.rb +1 -1
- data/spec/unit/provider/package/cab_spec.rb +1 -1
- data/spec/unit/provider/package/chocolatey_spec.rb +8 -8
- data/spec/unit/provider/package/msu_spec.rb +1 -1
- data/spec/unit/provider/package/openbsd_spec.rb +14 -10
- data/spec/unit/provider/package/powershell_spec.rb +1 -1
- data/spec/unit/provider/package/smartos_spec.rb +2 -2
- data/spec/unit/provider/package/windows/exe_spec.rb +9 -9
- data/spec/unit/provider/package/windows/msi_spec.rb +7 -7
- data/spec/unit/provider/package/windows_spec.rb +2 -1
- data/spec/unit/provider/package/yum/yum_cache_spec.rb +1 -1
- data/spec/unit/provider/package/zypper_spec.rb +13 -4
- data/spec/unit/provider/powershell_script_spec.rb +12 -12
- data/spec/unit/provider/registry_key_spec.rb +1 -1
- data/spec/unit/provider/remote_directory_spec.rb +6 -6
- data/spec/unit/provider/route_spec.rb +11 -11
- data/spec/unit/provider/service/arch_service_spec.rb +11 -11
- data/spec/unit/provider/service/debian_service_spec.rb +2 -1
- data/spec/unit/provider/service/freebsd_service_spec.rb +23 -19
- data/spec/unit/provider/service/gentoo_service_spec.rb +2 -2
- data/spec/unit/provider/service/init_service_spec.rb +9 -9
- data/spec/unit/provider/service/invokercd_service_spec.rb +9 -9
- data/spec/unit/provider/service/macosx_spec.rb +1 -1
- data/spec/unit/provider/service/openbsd_service_spec.rb +15 -11
- data/spec/unit/provider/service/simple_service_spec.rb +5 -5
- data/spec/unit/provider/service/upstart_service_spec.rb +14 -14
- data/spec/unit/provider/service/windows_spec.rb +53 -35
- data/spec/unit/provider/subversion_spec.rb +8 -4
- data/spec/unit/provider/systemd_unit_spec.rb +146 -146
- data/spec/unit/provider/template/content_spec.rb +28 -28
- data/spec/unit/provider/windows_task_spec.rb +7 -2
- data/spec/unit/provider_resolver_spec.rb +2 -2
- data/spec/unit/provider_spec.rb +2 -4
- data/spec/unit/recipe_spec.rb +3 -3
- data/spec/unit/resource/batch_spec.rb +1 -1
- data/spec/unit/resource/cab_package_spec.rb +1 -1
- data/spec/unit/resource/chef_gem_spec.rb +1 -1
- data/spec/unit/resource/directory_spec.rb +1 -1
- data/spec/unit/resource/dnf_package_spec.rb +1 -1
- data/spec/unit/resource/dsc_resource_spec.rb +1 -1
- data/spec/unit/resource/file/verification_spec.rb +1 -2
- data/spec/unit/resource/file_spec.rb +1 -1
- data/spec/unit/resource/group_spec.rb +1 -1
- data/spec/unit/resource/kernel_module_spec.rb +1 -0
- data/spec/unit/resource/link_spec.rb +1 -1
- data/spec/unit/resource/locale_spec.rb +12 -12
- data/spec/unit/resource/osx_profile_spec.rb +2 -1
- data/spec/unit/resource/powershell_script_spec.rb +12 -7
- data/spec/unit/resource/registry_key_spec.rb +3 -3
- data/spec/unit/resource/rhsm_repo_spec.rb +6 -0
- data/spec/unit/resource/service_spec.rb +1 -1
- data/spec/unit/resource/template_spec.rb +2 -2
- data/spec/unit/resource/windows_env_spec.rb +1 -1
- data/spec/unit/resource/windows_service_spec.rb +7 -7
- data/spec/unit/resource/windows_task_spec.rb +2 -2
- data/spec/unit/resource/windows_uac_spec.rb +2 -2
- data/spec/unit/resource/yum_package_spec.rb +1 -1
- data/spec/unit/resource_collection/resource_list_spec.rb +1 -1
- data/spec/unit/resource_collection/resource_set_spec.rb +7 -7
- data/spec/unit/resource_collection/stepable_iterator_spec.rb +2 -2
- data/spec/unit/resource_collection_spec.rb +4 -4
- data/spec/unit/resource_definition_spec.rb +2 -2
- data/spec/unit/resource_inspector_spec.rb +1 -1
- data/spec/unit/resource_reporter_spec.rb +6 -4
- data/spec/unit/resource_spec.rb +21 -21
- data/spec/unit/role_spec.rb +2 -2
- data/spec/unit/run_context/cookbook_compiler_spec.rb +24 -24
- data/spec/unit/run_list/run_list_expansion_spec.rb +9 -6
- data/spec/unit/run_list_spec.rb +1 -1
- data/spec/unit/runner_spec.rb +3 -3
- data/spec/unit/search/query_spec.rb +3 -2
- data/spec/unit/shell/model_wrapper_spec.rb +1 -1
- data/spec/unit/shell/shell_session_spec.rb +8 -11
- data/spec/unit/shell_spec.rb +1 -2
- data/spec/unit/user_spec.rb +4 -4
- data/spec/unit/user_v1_spec.rb +3 -3
- data/spec/unit/util/backup_spec.rb +1 -1
- data/spec/unit/util/editor_spec.rb +1 -1
- data/spec/unit/util/powershell/ps_credential_spec.rb +3 -2
- data/spec/unit/util/threaded_job_queue_spec.rb +2 -2
- data/spec/unit/version_class_spec.rb +4 -4
- data/spec/unit/win32/registry_spec.rb +5 -5
- data/spec/unit/win32/security_spec.rb +2 -1
- data/tasks/bin/run_external_test +1 -1
- data/tasks/docs.rb +78 -61
- data/tasks/rspec.rb +1 -1
- metadata +5 -33
- data/lib/.DS_Store +0 -0
- data/lib/chef/.DS_Store +0 -0
- data/lib/chef/dsl/.DS_Store +0 -0
- data/lib/chef/knife/.DS_Store +0 -0
- data/lib/chef/mixin/.DS_Store +0 -0
- data/lib/chef/nil_argument.rb +0 -3
- data/lib/chef/provider/.DS_Store +0 -0
- data/lib/chef/provider/package/.DS_Store +0 -0
- data/lib/chef/provider/package/freebsd/.DS_Store +0 -0
- data/lib/chef/resource/.DS_Store +0 -0
- data/lib/chef/resource/file/.DS_Store +0 -0
- data/spec/.DS_Store +0 -0
- data/spec/data/.DS_Store +0 -0
- data/spec/data/cookbooks/.DS_Store +0 -0
- data/spec/data/cookbooks/java/.DS_Store +0 -0
- data/spec/data/cookbooks/java/files/.DS_Store +0 -0
- data/spec/data/mac_users/.DS_Store +0 -0
- data/spec/data/nodes/Tim.local.json +0 -3
- data/spec/data/nodes/Tims-MBP.local.json +0 -3
- data/spec/data/run_context/.DS_Store +0 -0
- data/spec/data/run_context/cookbooks/.DS_Store +0 -0
- data/spec/functional/.DS_Store +0 -0
- data/spec/functional/resource/.DS_Store +0 -0
- data/spec/functional/util/.DS_Store +0 -0
- data/spec/integration/.DS_Store +0 -0
- data/spec/stress/.DS_Store +0 -0
- data/spec/support/.DS_Store +0 -0
- data/spec/unit/.DS_Store +0 -0
- data/tasks/.DS_Store +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 594e166bed32da754bf206f64e2109271ddf1469412338557db108e06261e1de
|
4
|
+
data.tar.gz: d0f5d5ba5ffe1d1956b9e5ce0fecb7e0b7e97dd27a7932a1f9e496420b31293a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 22da301445b2bdf05d08430e5c76a09f87f1e41a2107d101adbd095bd3037286ebf8626aa83e2200ac658ec8d31b94ab113cf1a77dbb9d57d80d6b9f176d52f5
|
7
|
+
data.tar.gz: 2db2c1bab933e7a5e53fd91ef2a86e53952b6e9669a9f92395c88c5106989dc2e7a6c96bf8c62619228599e4bdeb2145c1042311e54308cfcc21bef7e2d1883e
|
data/bin/knife
CHANGED
File without changes
|
data/ext/win32-eventlog/Rakefile
CHANGED
data/lib/chef.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#
|
2
2
|
# Author:: Adam Jacob (<adam@chef.io>)
|
3
|
-
# Copyright:: Copyright 2008-
|
3
|
+
# Copyright:: Copyright 2008-2019, Chef Software Inc.
|
4
4
|
# License:: Apache License, Version 2.0
|
5
5
|
#
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -18,7 +18,6 @@
|
|
18
18
|
|
19
19
|
require_relative "chef/version"
|
20
20
|
|
21
|
-
require_relative "chef/nil_argument"
|
22
21
|
require_relative "chef/mash"
|
23
22
|
require_relative "chef/exceptions"
|
24
23
|
require_relative "chef/log"
|
@@ -145,6 +145,7 @@ class Chef
|
|
145
145
|
#
|
146
146
|
def converge_failed(exception)
|
147
147
|
return if consumers.empty?
|
148
|
+
|
148
149
|
detect_unprocessed_resources
|
149
150
|
end
|
150
151
|
|
@@ -156,6 +157,7 @@ class Chef
|
|
156
157
|
#
|
157
158
|
def resource_action_start(new_resource, action, notification_type = nil, notifier = nil)
|
158
159
|
return if consumers.empty?
|
160
|
+
|
159
161
|
pending_updates << ActionRecord.new(new_resource, action, pending_updates.length)
|
160
162
|
end
|
161
163
|
|
@@ -166,6 +168,7 @@ class Chef
|
|
166
168
|
#
|
167
169
|
def resource_current_state_loaded(new_resource, action, current_resource)
|
168
170
|
return if consumers.empty?
|
171
|
+
|
169
172
|
current_record.current_resource = current_resource
|
170
173
|
end
|
171
174
|
|
@@ -175,6 +178,7 @@ class Chef
|
|
175
178
|
#
|
176
179
|
def resource_up_to_date(new_resource, action)
|
177
180
|
return if consumers.empty?
|
181
|
+
|
178
182
|
current_record.status = :up_to_date
|
179
183
|
end
|
180
184
|
|
@@ -184,6 +188,7 @@ class Chef
|
|
184
188
|
#
|
185
189
|
def resource_skipped(resource, action, conditional)
|
186
190
|
return if consumers.empty?
|
191
|
+
|
187
192
|
current_record.status = :skipped
|
188
193
|
current_record.conditional = conditional
|
189
194
|
end
|
@@ -194,6 +199,7 @@ class Chef
|
|
194
199
|
#
|
195
200
|
def resource_updated(new_resource, action)
|
196
201
|
return if consumers.empty?
|
202
|
+
|
197
203
|
current_record.status = :updated
|
198
204
|
end
|
199
205
|
|
@@ -203,6 +209,7 @@ class Chef
|
|
203
209
|
#
|
204
210
|
def resource_failed(new_resource, action, exception)
|
205
211
|
return if consumers.empty?
|
212
|
+
|
206
213
|
current_record.status = :failed
|
207
214
|
current_record.exception = exception
|
208
215
|
end
|
@@ -213,6 +220,7 @@ class Chef
|
|
213
220
|
#
|
214
221
|
def resource_completed(new_resource)
|
215
222
|
return if consumers.empty?
|
223
|
+
|
216
224
|
current_record.elapsed_time = new_resource.elapsed_time
|
217
225
|
|
218
226
|
# Verify if the resource has sensitive data and create a new blank resource with only
|
data/lib/chef/api_client.rb
CHANGED
@@ -157,7 +157,7 @@ class Chef
|
|
157
157
|
|
158
158
|
def self.list(inflate = false)
|
159
159
|
if inflate
|
160
|
-
response =
|
160
|
+
response = {}
|
161
161
|
Chef::Search::Query.new.search(:client) do |n|
|
162
162
|
n = json_create(n) if n.instance_of?(Hash)
|
163
163
|
response[n.name] = n
|
@@ -171,7 +171,7 @@ class Chef
|
|
171
171
|
# Load a client by name via the API
|
172
172
|
def self.load(name)
|
173
173
|
response = http_api.get("clients/#{name}")
|
174
|
-
if response.
|
174
|
+
if response.is_a?(Chef::ApiClient)
|
175
175
|
response
|
176
176
|
else
|
177
177
|
from_hash(response)
|
@@ -60,6 +60,7 @@ class Chef
|
|
60
60
|
rescue Net::HTTPFatalError => e
|
61
61
|
# HTTPFatalError implies 5xx.
|
62
62
|
raise if retries <= 0
|
63
|
+
|
63
64
|
retries -= 1
|
64
65
|
Chef::Log.warn("Failed to register new client, #{retries} tries remaining")
|
65
66
|
Chef::Log.warn("Response: HTTP #{e.response.code} - #{e}")
|
@@ -71,7 +72,7 @@ class Chef
|
|
71
72
|
|
72
73
|
def assert_destination_writable!
|
73
74
|
abs_path = File.expand_path(destination)
|
74
|
-
|
75
|
+
unless File.exists?(File.dirname(abs_path))
|
75
76
|
begin
|
76
77
|
FileUtils.mkdir_p(File.dirname(abs_path))
|
77
78
|
rescue Errno::EACCES
|
@@ -97,6 +98,7 @@ class Chef
|
|
97
98
|
# If create fails because the client exists, attempt to update. This
|
98
99
|
# requires admin privileges.
|
99
100
|
raise unless e.response.code == "409"
|
101
|
+
|
100
102
|
update
|
101
103
|
end
|
102
104
|
|
@@ -156,12 +158,11 @@ class Chef
|
|
156
158
|
|
157
159
|
def http_api
|
158
160
|
@http_api ||= Chef::ServerAPI.new(Chef::Config[:chef_server_url],
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
)
|
161
|
+
{
|
162
|
+
api_version: "0",
|
163
|
+
client_name: Chef::Config[:validation_client_name],
|
164
|
+
signing_key_filename: Chef::Config[:validation_key],
|
165
|
+
})
|
165
166
|
end
|
166
167
|
|
167
168
|
# Whether or not to generate keys locally and post the public key to the
|
data/lib/chef/api_client_v1.rb
CHANGED
@@ -190,7 +190,7 @@ class Chef
|
|
190
190
|
|
191
191
|
def self.list(inflate = false)
|
192
192
|
if inflate
|
193
|
-
response =
|
193
|
+
response = {}
|
194
194
|
Chef::Search::Query.new.search(:client) do |n|
|
195
195
|
n = from_hash(n) if n.instance_of?(Hash)
|
196
196
|
response[n.name] = n
|
@@ -270,6 +270,7 @@ class Chef
|
|
270
270
|
# rescue API V0 if 406 and the server supports V0
|
271
271
|
supported_versions = server_client_api_version_intersection(e, SUPPORTED_API_VERSIONS)
|
272
272
|
raise e unless supported_versions && supported_versions.include?(0)
|
273
|
+
|
273
274
|
new_client = chef_rest_v0.put("clients/#{name}", payload)
|
274
275
|
end
|
275
276
|
|
data/lib/chef/application.rb
CHANGED
@@ -353,6 +353,7 @@ class Chef
|
|
353
353
|
def handle_child_exit(pid_and_status)
|
354
354
|
status = pid_and_status[1]
|
355
355
|
return true if status.success?
|
356
|
+
|
356
357
|
message = if status.signaled?
|
357
358
|
"Chef run process terminated by signal #{status.termsig} (#{Signal.list.invert[status.termsig]})"
|
358
359
|
else
|
@@ -184,7 +184,7 @@ class Chef::Application::Apply < Chef::Application
|
|
184
184
|
@recipe_text = STDIN.read
|
185
185
|
temp_recipe_file
|
186
186
|
else
|
187
|
-
|
187
|
+
unless ARGV[0]
|
188
188
|
puts opt_parser
|
189
189
|
Chef::Application.exit! "No recipe file provided", Chef::Exceptions::RecipeNotFound.new
|
190
190
|
end
|
@@ -0,0 +1,440 @@
|
|
1
|
+
#
|
2
|
+
# Copyright:: Copyright 2008-2019, Chef Software Inc.
|
3
|
+
# License:: Apache License, Version 2.0
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
require_relative "../application"
|
18
|
+
require_relative "../client"
|
19
|
+
require_relative "../log"
|
20
|
+
require_relative "../config"
|
21
|
+
require_relative "../mixin/shell_out"
|
22
|
+
require_relative "../config_fetcher"
|
23
|
+
require_relative "../dist"
|
24
|
+
require_relative "../daemon"
|
25
|
+
require "chef-config/mixin/dot_d"
|
26
|
+
require "license_acceptance/cli_flags/mixlib_cli"
|
27
|
+
require "mixlib/archive" unless defined?(Mixlib::Archive)
|
28
|
+
|
29
|
+
# This is a temporary class being used as a part of an effort to reduce duplication
|
30
|
+
# between Chef::Application::Client and Chef::Application::Solo.
|
31
|
+
#
|
32
|
+
# If you are looking to make edits to the Client/Solo behavior please make changes here.
|
33
|
+
#
|
34
|
+
# If you are looking to reference or subclass this class, use Chef::Application::Client
|
35
|
+
# instead. This base class will be removed once the work is complete and external code
|
36
|
+
# will break.
|
37
|
+
#
|
38
|
+
# @deprecated use Chef::Application::Client instead, this will be removed in Chef-16
|
39
|
+
#
|
40
|
+
class Chef::Application::Base < Chef::Application
|
41
|
+
include Chef::Mixin::ShellOut
|
42
|
+
include ChefConfig::Mixin::DotD
|
43
|
+
include LicenseAcceptance::CLIFlags::MixlibCLI
|
44
|
+
|
45
|
+
# Mimic self_pipe sleep from Unicorn to capture signals safely
|
46
|
+
SELF_PIPE = [] # rubocop:disable Style/MutableConstant
|
47
|
+
|
48
|
+
option :config_option,
|
49
|
+
long: "--config-option OPTION=VALUE",
|
50
|
+
description: "Override a single configuration option.",
|
51
|
+
proc: lambda { |option, existing|
|
52
|
+
(existing ||= []) << option
|
53
|
+
existing
|
54
|
+
}
|
55
|
+
|
56
|
+
option :once,
|
57
|
+
long: "--once",
|
58
|
+
description: "Cancel any interval or splay options, run #{Chef::Dist::PRODUCT} once and exit.",
|
59
|
+
boolean: true
|
60
|
+
|
61
|
+
option :formatter,
|
62
|
+
short: "-F FORMATTER",
|
63
|
+
long: "--format FORMATTER",
|
64
|
+
description: "The output format to use.",
|
65
|
+
proc: lambda { |format| Chef::Config.add_formatter(format) }
|
66
|
+
|
67
|
+
option :force_logger,
|
68
|
+
long: "--force-logger",
|
69
|
+
description: "Use logger output instead of formatter output.",
|
70
|
+
boolean: true,
|
71
|
+
default: false
|
72
|
+
|
73
|
+
option :force_formatter,
|
74
|
+
long: "--force-formatter",
|
75
|
+
description: "Use formatter output instead of logger output.",
|
76
|
+
boolean: true,
|
77
|
+
default: false
|
78
|
+
|
79
|
+
option :profile_ruby,
|
80
|
+
long: "--[no-]profile-ruby",
|
81
|
+
description: "Dump complete Ruby call graph stack of entire #{Chef::Dist::PRODUCT} run (expert only).",
|
82
|
+
boolean: true,
|
83
|
+
default: false
|
84
|
+
|
85
|
+
option :color,
|
86
|
+
long: "--[no-]color",
|
87
|
+
boolean: true,
|
88
|
+
default: true,
|
89
|
+
description: "Use colored output, defaults to enabled."
|
90
|
+
|
91
|
+
option :log_level,
|
92
|
+
short: "-l LEVEL",
|
93
|
+
long: "--log_level LEVEL",
|
94
|
+
description: "Set the log level (auto, trace, debug, info, warn, error, fatal).",
|
95
|
+
proc: lambda { |l| l.to_sym }
|
96
|
+
|
97
|
+
option :log_location,
|
98
|
+
short: "-L LOGLOCATION",
|
99
|
+
long: "--logfile LOGLOCATION",
|
100
|
+
description: "Set the log file location, defaults to STDOUT - recommended for daemonizing.",
|
101
|
+
proc: nil
|
102
|
+
|
103
|
+
option :help,
|
104
|
+
short: "-h",
|
105
|
+
long: "--help",
|
106
|
+
description: "Show this help message.",
|
107
|
+
on: :tail,
|
108
|
+
boolean: true,
|
109
|
+
show_options: true,
|
110
|
+
exit: 0
|
111
|
+
|
112
|
+
option :user,
|
113
|
+
short: "-u USER",
|
114
|
+
long: "--user USER",
|
115
|
+
description: "User to set privilege to.",
|
116
|
+
proc: nil
|
117
|
+
|
118
|
+
option :group,
|
119
|
+
short: "-g GROUP",
|
120
|
+
long: "--group GROUP",
|
121
|
+
description: "Group to set privilege to.",
|
122
|
+
proc: nil
|
123
|
+
|
124
|
+
option :lockfile,
|
125
|
+
long: "--lockfile LOCKFILE",
|
126
|
+
description: "Set the lockfile location. Prevents multiple client processes from converging at the same time.",
|
127
|
+
proc: nil
|
128
|
+
|
129
|
+
option :interval,
|
130
|
+
short: "-i SECONDS",
|
131
|
+
long: "--interval SECONDS",
|
132
|
+
description: "Run #{Chef::Dist::PRODUCT} periodically, in seconds.",
|
133
|
+
proc: lambda { |s| s.to_i }
|
134
|
+
|
135
|
+
option :json_attribs,
|
136
|
+
short: "-j JSON_ATTRIBS",
|
137
|
+
long: "--json-attributes JSON_ATTRIBS",
|
138
|
+
description: "Load attributes from a JSON file or URL.",
|
139
|
+
proc: nil
|
140
|
+
|
141
|
+
option :node_name,
|
142
|
+
short: "-N NODE_NAME",
|
143
|
+
long: "--node-name NODE_NAME",
|
144
|
+
description: "The node name for this client.",
|
145
|
+
proc: nil
|
146
|
+
|
147
|
+
option :splay,
|
148
|
+
short: "-s SECONDS",
|
149
|
+
long: "--splay SECONDS",
|
150
|
+
description: "The splay time for running at intervals, in seconds.",
|
151
|
+
proc: lambda { |s| s.to_i }
|
152
|
+
|
153
|
+
option :environment,
|
154
|
+
short: "-E ENVIRONMENT",
|
155
|
+
long: "--environment ENVIRONMENT",
|
156
|
+
description: "Set the #{Chef::Dist::PRODUCT} environment on the node."
|
157
|
+
|
158
|
+
option :client_fork,
|
159
|
+
short: "-f",
|
160
|
+
long: "--[no-]fork",
|
161
|
+
description: "Fork #{Chef::Dist::PRODUCT} process."
|
162
|
+
|
163
|
+
option :why_run,
|
164
|
+
short: "-W",
|
165
|
+
long: "--why-run",
|
166
|
+
description: "Enable whyrun mode.",
|
167
|
+
boolean: true
|
168
|
+
|
169
|
+
option :override_runlist,
|
170
|
+
short: "-o RunlistItem,RunlistItem...",
|
171
|
+
long: "--override-runlist RunlistItem,RunlistItem...",
|
172
|
+
description: "Replace current run list with specified items for a single run.",
|
173
|
+
proc: lambda { |items|
|
174
|
+
items = items.split(",")
|
175
|
+
items.compact.map do |item|
|
176
|
+
Chef::RunList::RunListItem.new(item)
|
177
|
+
end
|
178
|
+
}
|
179
|
+
|
180
|
+
option :run_lock_timeout,
|
181
|
+
long: "--run-lock-timeout SECONDS",
|
182
|
+
description: "Set maximum duration to wait for another client run to finish, default is indefinitely.",
|
183
|
+
proc: lambda { |s| s.to_i }
|
184
|
+
|
185
|
+
option :version,
|
186
|
+
short: "-v",
|
187
|
+
long: "--version",
|
188
|
+
description: "Show #{Chef::Dist::PRODUCT} version.",
|
189
|
+
boolean: true,
|
190
|
+
proc: lambda { |v| puts "#{Chef::Dist::PRODUCT}: #{::Chef::VERSION}" },
|
191
|
+
exit: 0
|
192
|
+
|
193
|
+
option :minimal_ohai,
|
194
|
+
long: "--minimal-ohai",
|
195
|
+
description: "Only run the bare minimum Ohai plugins #{Chef::Dist::PRODUCT} needs to function.",
|
196
|
+
boolean: true
|
197
|
+
|
198
|
+
option :delete_entire_chef_repo,
|
199
|
+
long: "--delete-entire-chef-repo",
|
200
|
+
description: "DANGEROUS: does what it says, only useful with --recipe-url.",
|
201
|
+
boolean: true
|
202
|
+
|
203
|
+
option :ez,
|
204
|
+
long: "--ez",
|
205
|
+
description: "A memorial for Ezra Zygmuntowicz.",
|
206
|
+
boolean: true
|
207
|
+
|
208
|
+
option :target,
|
209
|
+
short: "-t TARGET",
|
210
|
+
long: "--target TARGET",
|
211
|
+
description: "Target #{Chef::Dist::PRODUCT} against a remote system or device",
|
212
|
+
proc: lambda { |target|
|
213
|
+
Chef::Log.warn "-- EXPERIMENTAL -- Target mode activated, resources and dsl may change without warning -- EXPERIMENTAL --"
|
214
|
+
target
|
215
|
+
}
|
216
|
+
|
217
|
+
option :disable_config,
|
218
|
+
long: "--disable-config",
|
219
|
+
description: "Refuse to load a config file and use defaults. This is for development and not a stable API.",
|
220
|
+
boolean: true
|
221
|
+
|
222
|
+
if Chef::Platform.windows?
|
223
|
+
option :fatal_windows_admin_check,
|
224
|
+
short: "-A",
|
225
|
+
long: "--fatal-windows-admin-check",
|
226
|
+
description: "Fail the run when #{Chef::Dist::CLIENT} doesn't have administrator privileges on Windows.",
|
227
|
+
boolean: true
|
228
|
+
end
|
229
|
+
|
230
|
+
option :fips,
|
231
|
+
long: "--[no-]fips",
|
232
|
+
description: "Enable FIPS mode.",
|
233
|
+
boolean: true
|
234
|
+
|
235
|
+
option :solo_legacy_mode,
|
236
|
+
long: "--legacy-mode",
|
237
|
+
description: "Run in legacy mode.",
|
238
|
+
boolean: true
|
239
|
+
|
240
|
+
option :chef_server_url,
|
241
|
+
short: "-S CHEFSERVERURL",
|
242
|
+
long: "--server CHEFSERVERURL",
|
243
|
+
description: "The #{Chef::Dist::SERVER_PRODUCT} URL.",
|
244
|
+
proc: nil
|
245
|
+
|
246
|
+
option :validation_key,
|
247
|
+
short: "-K KEY_FILE",
|
248
|
+
long: "--validation_key KEY_FILE",
|
249
|
+
description: "Set the validation key file location, used for registering new clients.",
|
250
|
+
proc: nil
|
251
|
+
|
252
|
+
option :client_key,
|
253
|
+
short: "-k KEY_FILE",
|
254
|
+
long: "--client_key KEY_FILE",
|
255
|
+
description: "Set the client key file location.",
|
256
|
+
proc: nil
|
257
|
+
|
258
|
+
option :enable_reporting,
|
259
|
+
short: "-R",
|
260
|
+
long: "--enable-reporting",
|
261
|
+
description: "(#{Chef::Dist::CLIENT} only) reporting data collection for runs.",
|
262
|
+
boolean: true
|
263
|
+
|
264
|
+
option :local_mode,
|
265
|
+
short: "-z",
|
266
|
+
long: "--local-mode",
|
267
|
+
description: "Point at local repository.",
|
268
|
+
boolean: true
|
269
|
+
|
270
|
+
option :chef_zero_host,
|
271
|
+
long: "--chef-zero-host HOST",
|
272
|
+
description: "Host to start #{Chef::Dist::ZERO} on."
|
273
|
+
|
274
|
+
option :chef_zero_port,
|
275
|
+
long: "--chef-zero-port PORT",
|
276
|
+
description: "Port (or port range) to start #{Chef::Dist::ZERO} on. Port ranges like 1000,1010 or 8889-9999 will try all given ports until one works."
|
277
|
+
|
278
|
+
option :listen,
|
279
|
+
long: "--[no-]listen",
|
280
|
+
description: "Whether a local mode (-z) server binds to a port.",
|
281
|
+
boolean: false
|
282
|
+
|
283
|
+
option :skip_cookbook_sync,
|
284
|
+
long: "--[no-]skip-cookbook-sync",
|
285
|
+
description: "(#{Chef::Dist::CLIENT} only) Use cached cookbooks without overwriting local differences from the #{Chef::Dist::SERVER_PRODUCT}.",
|
286
|
+
boolean: false
|
287
|
+
|
288
|
+
option :named_run_list,
|
289
|
+
short: "-n NAMED_RUN_LIST",
|
290
|
+
long: "--named-run-list NAMED_RUN_LIST",
|
291
|
+
description: "Use a policyfile's named run list instead of the default run list."
|
292
|
+
|
293
|
+
IMMEDIATE_RUN_SIGNAL = "1".freeze
|
294
|
+
RECONFIGURE_SIGNAL = "H".freeze
|
295
|
+
|
296
|
+
attr_reader :chef_client_json
|
297
|
+
|
298
|
+
def setup_application
|
299
|
+
Chef::Daemon.change_privilege
|
300
|
+
end
|
301
|
+
|
302
|
+
def setup_signal_handlers
|
303
|
+
super
|
304
|
+
|
305
|
+
unless Chef::Platform.windows?
|
306
|
+
SELF_PIPE.replace IO.pipe
|
307
|
+
|
308
|
+
trap("USR1") do
|
309
|
+
Chef::Log.info("SIGUSR1 received, will run now or after the current run")
|
310
|
+
SELF_PIPE[1].putc(IMMEDIATE_RUN_SIGNAL) # wakeup master process from select
|
311
|
+
end
|
312
|
+
|
313
|
+
# Override the trap setup in the parent so we can avoid running reconfigure during a run
|
314
|
+
trap("HUP") do
|
315
|
+
Chef::Log.info("SIGHUP received, will reconfigure now or after the current run")
|
316
|
+
SELF_PIPE[1].putc(RECONFIGURE_SIGNAL) # wakeup master process from select
|
317
|
+
end
|
318
|
+
end
|
319
|
+
end
|
320
|
+
|
321
|
+
# Run the chef client, optionally daemonizing or looping at intervals.
|
322
|
+
def run_application
|
323
|
+
if Chef::Config[:version]
|
324
|
+
puts "#{Chef::Dist::PRODUCT} version: #{::Chef::VERSION}"
|
325
|
+
end
|
326
|
+
|
327
|
+
if !Chef::Config[:client_fork] || Chef::Config[:once]
|
328
|
+
begin
|
329
|
+
# run immediately without interval sleep, or splay
|
330
|
+
run_chef_client(Chef::Config[:specific_recipes])
|
331
|
+
rescue SystemExit
|
332
|
+
raise
|
333
|
+
rescue Exception => e
|
334
|
+
Chef::Application.fatal!("#{e.class}: #{e.message}", e)
|
335
|
+
end
|
336
|
+
else
|
337
|
+
interval_run_chef_client
|
338
|
+
end
|
339
|
+
end
|
340
|
+
|
341
|
+
private
|
342
|
+
|
343
|
+
def unforked_interval_error_message
|
344
|
+
"Unforked #{Chef::Dist::PRODUCT} interval runs are disabled by default." +
|
345
|
+
"\nConfiguration settings:" +
|
346
|
+
("\n interval = #{Chef::Config[:interval]} seconds" if Chef::Config[:interval]).to_s +
|
347
|
+
"\nEnable #{Chef::Dist::PRODUCT} interval runs by setting `:client_fork = true` in your config file or adding `--fork` to your command line options."
|
348
|
+
end
|
349
|
+
|
350
|
+
def fetch_recipe_tarball(url, path)
|
351
|
+
Chef::Log.trace("Download recipes tarball from #{url} to #{path}")
|
352
|
+
if File.exist?(url)
|
353
|
+
FileUtils.cp(url, path)
|
354
|
+
elsif url =~ URI.regexp
|
355
|
+
File.open(path, "wb") do |f|
|
356
|
+
open(url) do |r|
|
357
|
+
f.write(r.read)
|
358
|
+
end
|
359
|
+
end
|
360
|
+
else
|
361
|
+
Chef::Application.fatal! "You specified --recipe-url but the value is neither a valid URL nor a path to a file that exists on disk." +
|
362
|
+
"Please confirm the location of the tarball and try again."
|
363
|
+
end
|
364
|
+
end
|
365
|
+
|
366
|
+
def interval_run_chef_client
|
367
|
+
if Chef::Config[:daemonize]
|
368
|
+
Chef::Daemon.daemonize(Chef::Dist::PRODUCT)
|
369
|
+
|
370
|
+
# Start first daemonized run after configured number of seconds
|
371
|
+
if Chef::Config[:daemonize].is_a?(Integer)
|
372
|
+
sleep_then_run_chef_client(Chef::Config[:daemonize])
|
373
|
+
end
|
374
|
+
end
|
375
|
+
|
376
|
+
loop do
|
377
|
+
sleep_then_run_chef_client(time_to_sleep)
|
378
|
+
Chef::Application.exit!("Exiting", 0) unless Chef::Config[:interval]
|
379
|
+
end
|
380
|
+
end
|
381
|
+
|
382
|
+
def sleep_then_run_chef_client(sleep_sec)
|
383
|
+
Chef::Log.trace("Sleeping for #{sleep_sec} seconds")
|
384
|
+
|
385
|
+
# interval_sleep will return early if we received a signal (unless on windows)
|
386
|
+
interval_sleep(sleep_sec)
|
387
|
+
|
388
|
+
run_chef_client(Chef::Config[:specific_recipes])
|
389
|
+
|
390
|
+
reconfigure
|
391
|
+
rescue SystemExit => e
|
392
|
+
raise
|
393
|
+
rescue Exception => e
|
394
|
+
if Chef::Config[:interval]
|
395
|
+
Chef::Log.error("#{e.class}: #{e}")
|
396
|
+
Chef::Log.trace("#{e.class}: #{e}\n#{e.backtrace.join("\n")}")
|
397
|
+
retry
|
398
|
+
end
|
399
|
+
|
400
|
+
Chef::Application.fatal!("#{e.class}: #{e.message}", e)
|
401
|
+
end
|
402
|
+
|
403
|
+
def time_to_sleep
|
404
|
+
duration = 0
|
405
|
+
duration += rand(Chef::Config[:splay]) if Chef::Config[:splay]
|
406
|
+
duration += Chef::Config[:interval] if Chef::Config[:interval]
|
407
|
+
duration
|
408
|
+
end
|
409
|
+
|
410
|
+
# sleep and handle queued signals
|
411
|
+
def interval_sleep(sec)
|
412
|
+
unless SELF_PIPE.empty?
|
413
|
+
# mimic sleep with a timeout on IO.select, listening for signals setup in #setup_signal_handlers
|
414
|
+
return unless IO.select([ SELF_PIPE[0] ], nil, nil, sec)
|
415
|
+
|
416
|
+
signal = SELF_PIPE[0].getc.chr
|
417
|
+
|
418
|
+
return if signal == IMMEDIATE_RUN_SIGNAL # be explicit about this behavior
|
419
|
+
|
420
|
+
# we need to sleep again after reconfigure to avoid stampeding when logrotate runs out of cron
|
421
|
+
if signal == RECONFIGURE_SIGNAL
|
422
|
+
reconfigure
|
423
|
+
interval_sleep(sec)
|
424
|
+
end
|
425
|
+
else
|
426
|
+
sleep(sec)
|
427
|
+
end
|
428
|
+
end
|
429
|
+
|
430
|
+
def for_ezra
|
431
|
+
puts <<~EOH
|
432
|
+
For Ezra Zygmuntowicz:
|
433
|
+
The man who brought you Chef Solo
|
434
|
+
Early contributor to Chef
|
435
|
+
Kind hearted open source advocate
|
436
|
+
Rest in peace, Ezra.
|
437
|
+
EOH
|
438
|
+
end
|
439
|
+
|
440
|
+
end
|