chef 12.13.37-universal-mingw32 → 12.14.60-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/CONTRIBUTING.md +48 -95
- data/Gemfile +6 -1
- data/README.md +9 -11
- data/VERSION +1 -1
- data/acceptance/.shared/kitchen_acceptance/.kitchen.ec2.yml +0 -1
- data/acceptance/Gemfile +4 -7
- data/acceptance/Gemfile.lock +59 -92
- data/acceptance/basics/test/integration/helpers/serverspec/Gemfile +8 -0
- data/acceptance/data-collector/test/integration/helpers/serverspec/Gemfile +8 -0
- data/acceptance/fips/test/integration/fips-integration/serverspec/Gemfile +6 -0
- data/acceptance/fips/test/integration/fips-unit-functional/serverspec/Gemfile +4 -0
- data/chef.gemspec +3 -2
- data/lib/chef/application/client.rb +4 -4
- data/lib/chef/application/solo.rb +2 -2
- data/lib/chef/chef_fs/command_line.rb +36 -34
- data/lib/chef/chef_fs/data_handler/data_handler_base.rb +2 -2
- data/lib/chef/chef_fs/file_pattern.rb +1 -1
- data/lib/chef/chef_fs/file_system.rb +139 -137
- data/lib/chef/chef_fs/parallelizer/parallel_enumerable.rb +2 -6
- data/lib/chef/cookbook/cookbook_version_loader.rb +27 -22
- data/lib/chef/cookbook/metadata.rb +1 -1
- data/lib/chef/cookbook/synchronizer.rb +3 -3
- data/lib/chef/cookbook_site_streaming_uploader.rb +3 -3
- data/lib/chef/cookbook_uploader.rb +1 -1
- data/lib/chef/cookbook_version.rb +6 -6
- data/lib/chef/dsl/powershell.rb +1 -1
- data/lib/chef/event_dispatch/base.rb +2 -2
- data/lib/chef/exceptions.rb +1 -1
- data/lib/chef/file_cache.rb +1 -1
- data/lib/chef/formatters/base.rb +2 -2
- data/lib/chef/formatters/doc.rb +2 -2
- data/lib/chef/http.rb +48 -18
- data/lib/chef/http/auth_credentials.rb +1 -1
- data/lib/chef/http/basic_client.rb +11 -2
- data/lib/chef/http/socketless_chef_zero_client.rb +2 -2
- data/lib/chef/key.rb +55 -56
- data/lib/chef/knife.rb +70 -61
- data/lib/chef/knife/client_delete.rb +2 -2
- data/lib/chef/knife/cookbook_bulk_delete.rb +1 -1
- data/lib/chef/knife/cookbook_show.rb +1 -1
- data/lib/chef/knife/core/gem_glob_loader.rb +3 -3
- data/lib/chef/knife/search.rb +2 -2
- data/lib/chef/knife/ssh.rb +19 -21
- data/lib/chef/knife/status.rb +2 -2
- data/lib/chef/mixin/command/unix.rb +2 -2
- data/lib/chef/mixin/powershell_type_coercions.rb +1 -1
- data/lib/chef/mixin/properties.rb +3 -0
- data/lib/chef/mixin/securable.rb +2 -2
- data/lib/chef/mixin/shell_out.rb +30 -0
- data/lib/chef/mixin/uris.rb +2 -1
- data/lib/chef/mixin/windows_architecture_helper.rb +3 -4
- data/lib/chef/monkey_patches/webrick-utils.rb +2 -2
- data/lib/chef/monologger.rb +1 -1
- data/lib/chef/node.rb +2 -2
- data/lib/chef/node/attribute.rb +3 -3
- data/lib/chef/platform/provider_mapping.rb +5 -2
- data/lib/chef/property.rb +14 -3
- data/lib/chef/provider/apt_repository.rb +3 -7
- data/lib/chef/provider/apt_update.rb +4 -6
- data/lib/chef/provider/cron.rb +1 -2
- data/lib/chef/provider/dsc_script.rb +4 -4
- data/lib/chef/provider/group/usermod.rb +1 -1
- data/lib/chef/provider/link.rb +10 -3
- data/lib/chef/provider/osx_profile.rb +10 -10
- data/lib/chef/provider/package.rb +2 -12
- data/lib/chef/provider/package/rubygems.rb +17 -16
- data/lib/chef/provider/package/windows.rb +2 -0
- data/lib/chef/provider/package/windows/exe.rb +1 -1
- data/lib/chef/provider/package/windows/registry_uninstall_entry.rb +0 -2
- data/lib/chef/provider/package/yum/rpm_utils.rb +8 -8
- data/lib/chef/provider/package/yum/yum_cache.rb +1 -1
- data/lib/chef/provider/remote_file/ftp.rb +2 -2
- data/lib/chef/provider/remote_file/sftp.rb +2 -2
- data/lib/chef/provider/service/debian.rb +2 -2
- data/lib/chef/provider/service/simple.rb +4 -3
- data/lib/chef/provider/service/solaris.rb +1 -1
- data/lib/chef/provider/service/systemd.rb +2 -2
- data/lib/chef/provider/service/upstart.rb +8 -5
- data/lib/chef/provider/support/yum_repo.erb +125 -0
- data/lib/chef/provider/systemd_unit.rb +11 -2
- data/lib/chef/provider/template_finder.rb +1 -1
- data/lib/chef/provider/user.rb +20 -16
- data/lib/chef/provider/user/aix.rb +5 -2
- data/lib/chef/provider/user/dscl.rb +1 -0
- data/lib/chef/provider/user/linux.rb +128 -0
- data/lib/chef/provider/user/pw.rb +2 -1
- data/lib/chef/provider/user/solaris.rb +3 -2
- data/lib/chef/provider/user/useradd.rb +5 -4
- data/lib/chef/provider/user/windows.rb +1 -1
- data/lib/chef/provider/windows_script.rb +5 -2
- data/lib/chef/provider/yum_repository.rb +121 -0
- data/lib/chef/providers.rb +4 -2
- data/lib/chef/resource.rb +7 -9
- data/lib/chef/resource/conditional.rb +9 -1
- data/lib/chef/resource/launchd.rb +1 -1
- data/lib/chef/resource/user.rb +3 -3
- data/lib/chef/resource/user/aix_user.rb +31 -0
- data/lib/chef/resource/user/dscl_user.rb +31 -0
- data/lib/chef/resource/user/linux_user.rb +51 -0
- data/lib/chef/resource/user/pw_user.rb +31 -0
- data/lib/chef/resource/user/solaris_user.rb +31 -0
- data/lib/chef/resource/user/windows_user.rb +31 -0
- data/lib/chef/resource/yum_package.rb +13 -12
- data/lib/chef/resource/yum_repository.rb +76 -0
- data/lib/chef/resource_builder.rb +1 -1
- data/lib/chef/resource_collection/stepable_iterator.rb +1 -3
- data/lib/chef/resource_reporter.rb +5 -5
- data/lib/chef/resources.rb +7 -0
- data/lib/chef/run_context.rb +5 -3
- data/lib/chef/run_context/cookbook_compiler.rb +3 -2
- data/lib/chef/run_list.rb +2 -2
- data/lib/chef/search/query.rb +11 -8
- data/lib/chef/shell/ext.rb +2 -2
- data/lib/chef/shell/shell_session.rb +1 -1
- data/lib/chef/util/dsc/configuration_generator.rb +1 -1
- data/lib/chef/util/powershell/cmdlet.rb +5 -2
- data/lib/chef/util/selinux.rb +1 -1
- data/lib/chef/version.rb +1 -1
- data/lib/chef/version_class.rb +2 -2
- data/lib/chef/version_constraint.rb +2 -2
- data/lib/chef/win32/api/error.rb +2 -2
- data/lib/chef/win32/api/net.rb +1 -1
- data/lib/chef/win32/eventlog.rb +1 -1
- data/lib/chef/win32/net.rb +1 -1
- data/lib/chef/win32/security/sid.rb +1 -1
- data/spec/functional/assets/testchefsubsys +2 -3
- data/spec/functional/event_loggers/windows_eventlog_spec.rb +11 -8
- data/spec/functional/file_content_management/deploy_strategies_spec.rb +1 -1
- data/spec/functional/http/simple_spec.rb +2 -2
- data/spec/functional/knife/cookbook_delete_spec.rb +5 -5
- data/spec/functional/knife/exec_spec.rb +6 -6
- data/spec/functional/knife/ssh_spec.rb +4 -4
- data/spec/functional/notifications_spec.rb +2 -2
- data/spec/functional/provider/whyrun_safe_ruby_block_spec.rb +2 -2
- data/spec/functional/rebooter_spec.rb +5 -5
- data/spec/functional/resource/bash_spec.rb +2 -2
- data/spec/functional/resource/deploy_revision_spec.rb +1 -1
- data/spec/functional/resource/dpkg_package_spec.rb +2 -2
- data/spec/functional/resource/dsc_resource_spec.rb +5 -5
- data/spec/functional/resource/dsc_script_spec.rb +27 -22
- data/spec/functional/resource/env_spec.rb +4 -4
- data/spec/functional/resource/execute_spec.rb +4 -4
- data/spec/functional/resource/group_spec.rb +20 -8
- data/spec/functional/resource/link_spec.rb +34 -0
- data/spec/functional/resource/ohai_spec.rb +6 -6
- data/spec/functional/resource/reboot_spec.rb +2 -2
- data/spec/functional/resource/remote_file_spec.rb +16 -7
- data/spec/functional/resource/user/dscl_spec.rb +3 -3
- data/spec/functional/resource/user/useradd_spec.rb +32 -26
- data/spec/functional/resource/windows_service_spec.rb +15 -15
- data/spec/functional/rest_spec.rb +2 -2
- data/spec/functional/run_lock_spec.rb +9 -9
- data/spec/functional/tiny_server_spec.rb +9 -8
- data/spec/functional/win32/crypto_spec.rb +1 -1
- data/spec/functional/win32/security_spec.rb +8 -8
- data/spec/integration/client/client_spec.rb +6 -4
- data/spec/integration/knife/chef_repo_path_spec.rb +70 -1
- data/spec/integration/knife/upload_spec.rb +1 -1
- data/spec/integration/recipes/lwrp_inline_resources_spec.rb +6 -6
- data/spec/integration/recipes/noop_resource_spec.rb +4 -4
- data/spec/integration/recipes/provider_choice.rb +3 -3
- data/spec/integration/recipes/recipe_dsl_spec.rb +318 -317
- data/spec/integration/recipes/resource_action_spec.rb +50 -54
- data/spec/integration/recipes/resource_converge_if_changed_spec.rb +34 -34
- data/spec/integration/recipes/resource_load_spec.rb +24 -24
- data/spec/integration/solo/solo_spec.rb +21 -30
- data/spec/scripts/ssl-serve.rb +1 -1
- data/spec/spec_helper.rb +1 -0
- data/spec/stress/win32/security_spec.rb +4 -4
- data/spec/support/chef_helpers.rb +22 -0
- data/spec/support/platform_helpers.rb +5 -1
- data/spec/support/shared/context/client.rb +3 -2
- data/spec/support/shared/functional/file_resource.rb +5 -4
- data/spec/support/shared/functional/http.rb +16 -16
- data/spec/support/shared/functional/securable_resource.rb +5 -5
- data/spec/support/shared/functional/win32_service.rb +5 -7
- data/spec/support/shared/integration/app_server_support.rb +1 -3
- data/spec/support/shared/integration/knife_support.rb +0 -2
- data/spec/support/shared/shared_examples.rb +2 -2
- data/spec/support/shared/unit/api_versioning.rb +2 -2
- data/spec/support/shared/unit/application_dot_d.rb +9 -6
- data/spec/support/shared/unit/provider/file.rb +2 -2
- data/spec/support/shared/unit/provider/useradd_based_user_provider.rb +49 -80
- data/spec/support/shared/unit/resource/static_provider_resolution.rb +2 -2
- data/spec/support/shared/unit/script_resource.rb +4 -4
- data/spec/support/shared/unit/user_and_client_shared.rb +4 -4
- data/spec/tiny_server.rb +51 -66
- data/spec/unit/api_client_v1_spec.rb +2 -2
- data/spec/unit/application_spec.rb +1 -1
- data/spec/unit/audit/audit_event_proxy_spec.rb +34 -27
- data/spec/unit/audit/audit_reporter_spec.rb +32 -23
- data/spec/unit/audit/control_group_data_spec.rb +19 -14
- data/spec/unit/chef_class_spec.rb +1 -1
- data/spec/unit/chef_fs/data_handler/group_handler_spec.rb +1 -1
- data/spec/unit/chef_fs/diff_spec.rb +4 -4
- data/spec/unit/chef_fs/file_system/operation_failed_error_spec.rb +4 -4
- data/spec/unit/chef_fs/file_system_spec.rb +2 -2
- data/spec/unit/chef_fs/parallelizer.rb +5 -7
- data/spec/unit/cookbook/metadata_spec.rb +98 -98
- data/spec/unit/cookbook/synchronizer_spec.rb +7 -0
- data/spec/unit/cookbook_loader_spec.rb +24 -24
- data/spec/unit/cookbook_version_file_specificity_spec.rb +8 -8
- data/spec/unit/daemon_spec.rb +1 -1
- data/spec/unit/data_bag_item_spec.rb +18 -18
- data/spec/unit/data_bag_spec.rb +2 -2
- data/spec/unit/data_collector/messages/helpers_spec.rb +9 -9
- data/spec/unit/data_collector/messages_spec.rb +2 -2
- data/spec/unit/data_collector_spec.rb +19 -19
- data/spec/unit/dsl/audit_spec.rb +3 -3
- data/spec/unit/dsl/data_query_spec.rb +3 -2
- data/spec/unit/dsl/declare_resource_spec.rb +10 -10
- data/spec/unit/encrypted_data_bag_item/check_encrypted_spec.rb +3 -2
- data/spec/unit/encrypted_data_bag_item_spec.rb +3 -2
- data/spec/unit/environment_spec.rb +6 -6
- data/spec/unit/event_dispatch/dispatcher_spec.rb +2 -2
- data/spec/unit/file_access_control_spec.rb +3 -3
- data/spec/unit/file_content_management/tempfile_spec.rb +2 -2
- data/spec/unit/formatters/error_inspectors/api_error_formatting_spec.rb +2 -2
- data/spec/unit/guard_interpreter/resource_guard_interpreter_spec.rb +2 -2
- data/spec/unit/http/basic_client_spec.rb +20 -0
- data/spec/unit/http/validate_content_length_spec.rb +8 -8
- data/spec/unit/http_spec.rb +14 -0
- data/spec/unit/knife/bootstrap/chef_vault_handler_spec.rb +2 -2
- data/spec/unit/knife/bootstrap/client_builder_spec.rb +2 -2
- data/spec/unit/knife/bootstrap_spec.rb +8 -6
- data/spec/unit/knife/client_bulk_delete_spec.rb +8 -8
- data/spec/unit/knife/client_edit_spec.rb +2 -2
- data/spec/unit/knife/configure_client_spec.rb +2 -2
- data/spec/unit/knife/cookbook_metadata_spec.rb +4 -4
- data/spec/unit/knife/cookbook_site_install_spec.rb +6 -5
- data/spec/unit/knife/cookbook_site_share_spec.rb +2 -2
- data/spec/unit/knife/core/hashed_command_loader_spec.rb +5 -4
- data/spec/unit/knife/core/node_editor_spec.rb +3 -3
- data/spec/unit/knife/core/ui_spec.rb +2 -2
- data/spec/unit/knife/data_bag_from_file_spec.rb +4 -3
- data/spec/unit/knife/data_bag_show_spec.rb +3 -2
- data/spec/unit/knife/key_create_spec.rb +14 -14
- data/spec/unit/knife/key_delete_spec.rb +2 -2
- data/spec/unit/knife/key_edit_spec.rb +16 -16
- data/spec/unit/knife/key_list_spec.rb +6 -6
- data/spec/unit/knife/key_show_spec.rb +4 -4
- data/spec/unit/knife/status_spec.rb +3 -2
- data/spec/unit/knife/user_create_spec.rb +4 -4
- data/spec/unit/knife_spec.rb +7 -6
- data/spec/unit/lwrp_spec.rb +6 -6
- data/spec/unit/mixin/api_version_request_handling_spec.rb +2 -2
- data/spec/unit/mixin/command_spec.rb +17 -14
- data/spec/unit/mixin/deprecation_spec.rb +1 -1
- data/spec/unit/mixin/homebrew_user_spec.rb +2 -2
- data/spec/unit/mixin/params_validate_spec.rb +53 -52
- data/spec/unit/mixin/powershell_out_spec.rb +2 -2
- data/spec/unit/mixin/powershell_type_coercions_spec.rb +2 -2
- data/spec/unit/mixin/shell_out_spec.rb +1 -1
- data/spec/unit/mixin/xml_escape_spec.rb +3 -3
- data/spec/unit/node_spec.rb +2 -2
- data/spec/unit/platform/query_helpers_spec.rb +3 -3
- data/spec/unit/property_spec.rb +4 -4
- data/spec/unit/provider/cookbook_file_spec.rb +4 -4
- data/spec/unit/provider/cron/unix_spec.rb +4 -4
- data/spec/unit/provider/cron_spec.rb +2 -2
- data/spec/unit/provider/deploy_spec.rb +8 -8
- data/spec/unit/provider/dsc_resource_spec.rb +11 -10
- data/spec/unit/provider/dsc_script_spec.rb +9 -9
- data/spec/unit/provider/env/windows_spec.rb +8 -8
- data/spec/unit/provider/file/content_spec.rb +6 -6
- data/spec/unit/provider/file_spec.rb +4 -4
- data/spec/unit/provider/launchd_spec.rb +2 -1
- data/spec/unit/provider/link_spec.rb +155 -0
- data/spec/unit/provider/mount/mount_spec.rb +5 -5
- data/spec/unit/provider/mount/solaris_spec.rb +48 -48
- data/spec/unit/provider/osx_profile_spec.rb +6 -0
- data/spec/unit/provider/package/chocolatey_spec.rb +4 -4
- data/spec/unit/provider/package/freebsd/port_spec.rb +4 -4
- data/spec/unit/provider/package/rubygems_spec.rb +50 -44
- data/spec/unit/provider/package/windows/exe_spec.rb +9 -0
- data/spec/unit/provider/package/yum_spec.rb +61 -60
- data/spec/unit/provider/package_spec.rb +2 -2
- data/spec/unit/provider/powershell_script_spec.rb +4 -4
- data/spec/unit/provider/remote_directory_spec.rb +1 -1
- data/spec/unit/provider/remote_file/ftp_spec.rb +4 -4
- data/spec/unit/provider/remote_file/local_file_spec.rb +4 -2
- data/spec/unit/provider/remote_file/sftp_spec.rb +4 -4
- data/spec/unit/provider/remote_file_spec.rb +4 -4
- data/spec/unit/provider/script_spec.rb +4 -4
- data/spec/unit/provider/service/debian_service_spec.rb +4 -4
- data/spec/unit/provider/service/freebsd_service_spec.rb +12 -8
- data/spec/unit/provider/service/openbsd_service_spec.rb +12 -8
- data/spec/unit/provider/service/systemd_service_spec.rb +4 -4
- data/spec/unit/provider/service/upstart_service_spec.rb +27 -12
- data/spec/unit/provider/service/windows_spec.rb +10 -10
- data/spec/unit/provider/systemd_unit_spec.rb +2 -2
- data/spec/unit/provider/template/content_spec.rb +8 -8
- data/spec/unit/provider/template_spec.rb +8 -8
- data/spec/unit/provider/user/dscl_spec.rb +51 -51
- data/spec/unit/provider/user/linux_spec.rb +76 -0
- data/spec/unit/provider/user/pw_spec.rb +3 -6
- data/spec/unit/provider/user/solaris_spec.rb +5 -5
- data/spec/unit/provider/user/windows_spec.rb +3 -3
- data/spec/unit/provider/user_spec.rb +2 -2
- data/spec/unit/provider/yum_repository_spec.rb +35 -0
- data/spec/unit/provider_resolver_spec.rb +306 -264
- data/spec/unit/recipe_spec.rb +8 -7
- data/spec/unit/resource/apt_repository_spec.rb +4 -4
- data/spec/unit/resource/apt_update_spec.rb +4 -4
- data/spec/unit/resource/conditional_spec.rb +46 -0
- data/spec/unit/resource/dsc_resource_spec.rb +8 -8
- data/spec/unit/resource/dsc_script_spec.rb +4 -4
- data/spec/unit/resource/freebsd_package_spec.rb +6 -6
- data/spec/unit/resource/launchd_spec.rb +3 -2
- data/spec/unit/resource/osx_profile_spec.rb +3 -2
- data/spec/unit/resource/remote_file_spec.rb +6 -6
- data/spec/unit/resource/service_spec.rb +14 -14
- data/spec/unit/resource/user_spec.rb +1 -1
- data/spec/unit/resource/yum_repository_spec.rb +49 -0
- data/spec/unit/resource_collection_spec.rb +4 -4
- data/spec/unit/resource_definition_spec.rb +11 -11
- data/spec/unit/resource_reporter_spec.rb +4 -4
- data/spec/unit/resource_resolver_spec.rb +6 -6
- data/spec/unit/resource_spec.rb +36 -16
- data/spec/unit/run_context/child_run_context_spec.rb +4 -4
- data/spec/unit/run_context/cookbook_compiler_spec.rb +43 -1
- data/spec/unit/run_context_spec.rb +8 -8
- data/spec/unit/run_list/run_list_expansion_spec.rb +2 -2
- data/spec/unit/runner_spec.rb +2 -2
- data/spec/unit/search/query_spec.rb +15 -14
- data/spec/unit/user_v1_spec.rb +8 -8
- data/spec/unit/util/dsc/configuration_generator_spec.rb +12 -12
- data/spec/unit/util/dsc/local_configuration_manager_spec.rb +12 -9
- data/spec/unit/util/dsc/resource_store.rb +8 -6
- data/spec/unit/util/editor_spec.rb +6 -6
- data/spec/unit/util/powershell/cmdlet_spec.rb +10 -10
- data/tasks/bin/bundle-platform +1 -0
- data/tasks/bin/bundler_patch.rb +27 -0
- data/tasks/cbgb.rb +2 -2
- data/tasks/maintainers.rb +2 -2
- metadata +37 -8
- data/spec/unit/provider/user/useradd_spec.rb +0 -51
@@ -1,3 +1,9 @@
|
|
1
1
|
source "https://rubygems.org"
|
2
2
|
|
3
|
+
# Until https://github.com/test-kitchen/busser-serverspec/pull/42 is merged and
|
4
|
+
# released, we need to include rake and rspec-core in the Gemfile
|
5
|
+
gem "rake"
|
6
|
+
gem "rspec-core"
|
7
|
+
gem "busser-serverspec"
|
8
|
+
gem "serverspec"
|
3
9
|
gem "mixlib-shellout"
|
data/chef.gemspec
CHANGED
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
|
|
13
13
|
s.email = "adam@chef.io"
|
14
14
|
s.homepage = "http://www.chef.io"
|
15
15
|
|
16
|
-
s.required_ruby_version = ">= 2.
|
16
|
+
s.required_ruby_version = ">= 2.2.0"
|
17
17
|
|
18
18
|
s.add_dependency "chef-config", "= #{Chef::VERSION}"
|
19
19
|
|
@@ -32,10 +32,11 @@ Gem::Specification.new do |s|
|
|
32
32
|
s.add_dependency "erubis", "~> 2.7"
|
33
33
|
s.add_dependency "diff-lcs", "~> 1.2", ">= 1.2.4"
|
34
34
|
|
35
|
-
s.add_dependency "chef-zero", "
|
35
|
+
s.add_dependency "chef-zero", ">= 4.8"
|
36
36
|
|
37
37
|
s.add_dependency "plist", "~> 3.2"
|
38
38
|
s.add_dependency "iniparse", "~> 1.4"
|
39
|
+
s.add_dependency "addressable"
|
39
40
|
|
40
41
|
# Audit mode requires these, so they are non-developmental dependencies now
|
41
42
|
%w{rspec-core rspec-expectations rspec-mocks}.each { |gem| s.add_dependency gem, "~> 3.5" }
|
@@ -204,9 +204,9 @@ class Chef::Application::Client < Chef::Application
|
|
204
204
|
:description => "Replace current run list with specified items for a single run",
|
205
205
|
:proc => lambda {|items|
|
206
206
|
items = items.split(",")
|
207
|
-
items.compact.map
|
207
|
+
items.compact.map do |item|
|
208
208
|
Chef::RunList::RunListItem.new(item)
|
209
|
-
|
209
|
+
end
|
210
210
|
}
|
211
211
|
|
212
212
|
option :runlist,
|
@@ -215,9 +215,9 @@ class Chef::Application::Client < Chef::Application
|
|
215
215
|
:description => "Permanently replace current run list with specified items",
|
216
216
|
:proc => lambda {|items|
|
217
217
|
items = items.split(",")
|
218
|
-
items.compact.map
|
218
|
+
items.compact.map do |item|
|
219
219
|
Chef::RunList::RunListItem.new(item)
|
220
|
-
|
220
|
+
end
|
221
221
|
}
|
222
222
|
option :why_run,
|
223
223
|
:short => "-W",
|
@@ -168,9 +168,9 @@ class Chef::Application::Solo < Chef::Application
|
|
168
168
|
:description => "Replace current run list with specified items",
|
169
169
|
:proc => lambda {|items|
|
170
170
|
items = items.split(",")
|
171
|
-
items.compact.map
|
171
|
+
items.compact.map do |item|
|
172
172
|
Chef::RunList::RunListItem.new(item)
|
173
|
-
|
173
|
+
end
|
174
174
|
}
|
175
175
|
|
176
176
|
option :client_fork,
|
@@ -242,48 +242,50 @@ class Chef
|
|
242
242
|
return [ [ :error, old_entry, new_entry, nil, nil, e ] ]
|
243
243
|
end
|
244
244
|
|
245
|
-
|
245
|
+
class << self
|
246
|
+
private
|
246
247
|
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
248
|
+
def sort_keys(json_object)
|
249
|
+
if json_object.is_a?(Array)
|
250
|
+
json_object.map { |o| sort_keys(o) }
|
251
|
+
elsif json_object.is_a?(Hash)
|
252
|
+
new_hash = {}
|
253
|
+
json_object.keys.sort.each { |key| new_hash[key] = sort_keys(json_object[key]) }
|
254
|
+
new_hash
|
255
|
+
else
|
256
|
+
json_object
|
257
|
+
end
|
256
258
|
end
|
257
|
-
end
|
258
259
|
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
def self.diff_text(old_path, new_path, old_value, new_value)
|
266
|
-
# Copy to tempfiles before diffing
|
267
|
-
# TODO don't copy things that are already in files! Or find an in-memory diff algorithm
|
268
|
-
begin
|
269
|
-
new_tempfile = Tempfile.new("new")
|
270
|
-
new_tempfile.write(new_value)
|
271
|
-
new_tempfile.close
|
260
|
+
def canonicalize_json(json_text)
|
261
|
+
parsed_json = Chef::JSONCompat.parse(json_text)
|
262
|
+
sorted_json = sort_keys(parsed_json)
|
263
|
+
Chef::JSONCompat.to_json_pretty(sorted_json)
|
264
|
+
end
|
272
265
|
|
266
|
+
def diff_text(old_path, new_path, old_value, new_value)
|
267
|
+
# Copy to tempfiles before diffing
|
268
|
+
# TODO don't copy things that are already in files! Or find an in-memory diff algorithm
|
273
269
|
begin
|
274
|
-
|
275
|
-
|
276
|
-
|
270
|
+
new_tempfile = Tempfile.new("new")
|
271
|
+
new_tempfile.write(new_value)
|
272
|
+
new_tempfile.close
|
277
273
|
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
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
|
283
|
+
ensure
|
284
|
+
old_tempfile.close!
|
285
|
+
end
|
282
286
|
ensure
|
283
|
-
|
287
|
+
new_tempfile.close!
|
284
288
|
end
|
285
|
-
ensure
|
286
|
-
new_tempfile.close!
|
287
289
|
end
|
288
290
|
end
|
289
291
|
end
|
@@ -93,7 +93,7 @@ class Chef
|
|
93
93
|
# name to recipe[name]. Then calls uniq on the result.
|
94
94
|
#
|
95
95
|
def normalize_run_list(run_list)
|
96
|
-
run_list.map
|
96
|
+
run_list.map do |item|
|
97
97
|
case item.to_s
|
98
98
|
when /^recipe\[.*\]$/
|
99
99
|
item # explicit recipe
|
@@ -102,7 +102,7 @@ class Chef
|
|
102
102
|
else
|
103
103
|
"recipe[#{item}]"
|
104
104
|
end
|
105
|
-
|
105
|
+
end.uniq
|
106
106
|
end
|
107
107
|
|
108
108
|
#
|
@@ -68,7 +68,7 @@ class Chef
|
|
68
68
|
list_from(exact_child, &block)
|
69
69
|
end
|
70
70
|
|
71
|
-
|
71
|
+
# Otherwise, go through all children and find any matches
|
72
72
|
elsif entry.dir?
|
73
73
|
results = Parallelizer.parallelize(entry.children) { |child| Chef::ChefFS::FileSystem.list(child, pattern) }
|
74
74
|
results.flatten(1).each(&block)
|
@@ -257,172 +257,174 @@ class Chef
|
|
257
257
|
[ are_same, a_value, b_value ]
|
258
258
|
end
|
259
259
|
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
if
|
280
|
-
|
281
|
-
|
282
|
-
if
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
260
|
+
class << self
|
261
|
+
private
|
262
|
+
|
263
|
+
# Copy two entries (could be files or dirs)
|
264
|
+
def copy_entries(src_entry, dest_entry, new_dest_parent, recurse_depth, options, ui, format_path)
|
265
|
+
# A NOTE about this algorithm:
|
266
|
+
# There are cases where this algorithm does too many network requests.
|
267
|
+
# knife upload with a specific filename will first check if the file
|
268
|
+
# exists (a "dir" in the parent) before deciding whether to POST or
|
269
|
+
# PUT it. If we just tried PUT (or POST) and then tried the other if
|
270
|
+
# the conflict failed, we wouldn't need to check existence.
|
271
|
+
# On the other hand, we may already have DONE the request, in which
|
272
|
+
# case we shouldn't waste time trying PUT if we know the file doesn't
|
273
|
+
# exist.
|
274
|
+
# Will need to decide how that works with checksums, though.
|
275
|
+
error = false
|
276
|
+
begin
|
277
|
+
dest_path = format_path.call(dest_entry) if ui
|
278
|
+
src_path = format_path.call(src_entry) if ui
|
279
|
+
if !src_entry.exists?
|
280
|
+
if options[:purge]
|
281
|
+
# If we would not have uploaded it, we will not purge it.
|
282
|
+
if src_entry.parent.can_have_child?(dest_entry.name, dest_entry.dir?)
|
283
|
+
if options[:dry_run]
|
284
|
+
ui.output "Would delete #{dest_path}" if ui
|
285
|
+
else
|
286
|
+
begin
|
287
|
+
dest_entry.delete(true)
|
288
|
+
ui.output "Deleted extra entry #{dest_path} (purge is on)" if ui
|
289
|
+
rescue Chef::ChefFS::FileSystem::NotFoundError
|
290
|
+
ui.output "Entry #{dest_path} does not exist. Nothing to do. (purge is on)" if ui
|
291
|
+
end
|
290
292
|
end
|
291
|
-
end
|
292
|
-
else
|
293
|
-
ui.output ("Not deleting extra entry #{dest_path} (purge is off)") if ui
|
294
|
-
end
|
295
|
-
end
|
296
|
-
|
297
|
-
elsif !dest_entry.exists?
|
298
|
-
if new_dest_parent.can_have_child?(src_entry.name, src_entry.dir?)
|
299
|
-
# If the entry can do a copy directly from filesystem, do that.
|
300
|
-
if new_dest_parent.respond_to?(:create_child_from)
|
301
|
-
if options[:dry_run]
|
302
|
-
ui.output "Would create #{dest_path}" if ui
|
303
293
|
else
|
304
|
-
|
305
|
-
ui.output "Created #{dest_path}" if ui
|
294
|
+
ui.output ("Not deleting extra entry #{dest_path} (purge is off)") if ui
|
306
295
|
end
|
307
|
-
return
|
308
296
|
end
|
309
297
|
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
if recurse_depth != 0
|
320
|
-
parallel_do(src_entry.children) do |src_child|
|
321
|
-
new_dest_child = new_dest_dir.child(src_child.name)
|
322
|
-
child_error = copy_entries(src_child, new_dest_child, new_dest_dir, recurse_depth ? recurse_depth - 1 : recurse_depth, options, ui, format_path)
|
323
|
-
error ||= child_error
|
298
|
+
elsif !dest_entry.exists?
|
299
|
+
if new_dest_parent.can_have_child?(src_entry.name, src_entry.dir?)
|
300
|
+
# If the entry can do a copy directly from filesystem, do that.
|
301
|
+
if new_dest_parent.respond_to?(:create_child_from)
|
302
|
+
if options[:dry_run]
|
303
|
+
ui.output "Would create #{dest_path}" if ui
|
304
|
+
else
|
305
|
+
new_dest_parent.create_child_from(src_entry)
|
306
|
+
ui.output "Created #{dest_path}" if ui
|
324
307
|
end
|
308
|
+
return
|
325
309
|
end
|
326
|
-
else
|
327
|
-
if options[:dry_run]
|
328
|
-
ui.output "Would create #{dest_path}" if ui
|
329
|
-
else
|
330
|
-
child = new_dest_parent.create_child(src_entry.name, src_entry.read)
|
331
|
-
ui.output "Created #{format_path.call(child)}" if ui
|
332
|
-
end
|
333
|
-
end
|
334
|
-
end
|
335
|
-
|
336
|
-
else
|
337
|
-
# Both exist.
|
338
310
|
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
311
|
+
if src_entry.dir?
|
312
|
+
if options[:dry_run]
|
313
|
+
ui.output "Would create #{dest_path}" if ui
|
314
|
+
new_dest_dir = new_dest_parent.child(src_entry.name)
|
315
|
+
else
|
316
|
+
new_dest_dir = new_dest_parent.create_child(src_entry.name, nil)
|
317
|
+
ui.output "Created #{dest_path}" if ui
|
318
|
+
end
|
319
|
+
# Directory creation is recursive.
|
320
|
+
if recurse_depth != 0
|
321
|
+
parallel_do(src_entry.children) do |src_child|
|
322
|
+
new_dest_child = new_dest_dir.child(src_child.name)
|
323
|
+
child_error = copy_entries(src_child, new_dest_child, new_dest_dir, recurse_depth ? recurse_depth - 1 : recurse_depth, options, ui, format_path)
|
324
|
+
error ||= child_error
|
325
|
+
end
|
326
|
+
end
|
344
327
|
else
|
345
|
-
|
346
|
-
|
328
|
+
if options[:dry_run]
|
329
|
+
ui.output "Would create #{dest_path}" if ui
|
330
|
+
else
|
331
|
+
child = new_dest_parent.create_child(src_entry.name, src_entry.read)
|
332
|
+
ui.output "Created #{format_path.call(child)}" if ui
|
333
|
+
end
|
347
334
|
end
|
348
335
|
end
|
349
|
-
return
|
350
|
-
end
|
351
336
|
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
337
|
+
else
|
338
|
+
# Both exist.
|
339
|
+
|
340
|
+
# If the entry can do a copy directly, do that.
|
341
|
+
if dest_entry.respond_to?(:copy_from)
|
342
|
+
if options[:force] || compare(src_entry, dest_entry)[0] == false
|
343
|
+
if options[:dry_run]
|
344
|
+
ui.output "Would update #{dest_path}" if ui
|
345
|
+
else
|
346
|
+
dest_entry.copy_from(src_entry, options)
|
347
|
+
ui.output "Updated #{dest_path}" if ui
|
360
348
|
end
|
361
349
|
end
|
362
|
-
else
|
363
|
-
# If they are different types.
|
364
|
-
ui.error("File #{src_path} is a directory while file #{dest_path} is a regular file\n") if ui
|
365
350
|
return
|
366
351
|
end
|
367
|
-
else
|
368
|
-
if dest_entry.dir?
|
369
|
-
ui.error("File #{src_path} is a regular file while file #{dest_path} is a directory\n") if ui
|
370
|
-
return
|
371
|
-
else
|
372
352
|
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
353
|
+
# If they are different types, log an error.
|
354
|
+
if src_entry.dir?
|
355
|
+
if dest_entry.dir?
|
356
|
+
# If both are directories, recurse into their children
|
357
|
+
if recurse_depth != 0
|
358
|
+
parallel_do(child_pairs(src_entry, dest_entry)) do |src_child, dest_child|
|
359
|
+
child_error = copy_entries(src_child, dest_child, dest_entry, recurse_depth ? recurse_depth - 1 : recurse_depth, options, ui, format_path)
|
360
|
+
error ||= child_error
|
361
|
+
end
|
362
|
+
end
|
379
363
|
else
|
380
|
-
|
381
|
-
|
364
|
+
# If they are different types.
|
365
|
+
ui.error("File #{src_path} is a directory while file #{dest_path} is a regular file\n") if ui
|
366
|
+
return
|
382
367
|
end
|
383
|
-
|
384
|
-
|
385
|
-
|
368
|
+
else
|
369
|
+
if dest_entry.dir?
|
370
|
+
ui.error("File #{src_path} is a regular file while file #{dest_path} is a directory\n") if ui
|
371
|
+
return
|
372
|
+
else
|
373
|
+
|
374
|
+
# Both are files! Copy them unless we're sure they are the same.'
|
375
|
+
if options[:diff] == false
|
376
|
+
should_copy = false
|
377
|
+
elsif options[:force]
|
378
|
+
should_copy = true
|
379
|
+
src_value = nil
|
386
380
|
else
|
387
|
-
src_value = src_entry
|
388
|
-
|
389
|
-
|
381
|
+
are_same, src_value, _dest_value = compare(src_entry, dest_entry)
|
382
|
+
should_copy = !are_same
|
383
|
+
end
|
384
|
+
if should_copy
|
385
|
+
if options[:dry_run]
|
386
|
+
ui.output "Would update #{dest_path}" if ui
|
387
|
+
else
|
388
|
+
src_value = src_entry.read if src_value.nil?
|
389
|
+
dest_entry.write(src_value)
|
390
|
+
ui.output "Updated #{dest_path}" if ui
|
391
|
+
end
|
390
392
|
end
|
391
393
|
end
|
392
394
|
end
|
393
395
|
end
|
396
|
+
rescue RubyFileError => e
|
397
|
+
ui.warn "#{format_path.call(e.entry)} #{e.reason}." if ui
|
398
|
+
rescue DefaultEnvironmentCannotBeModifiedError => e
|
399
|
+
ui.warn "#{format_path.call(e.entry)} #{e.reason}." if ui
|
400
|
+
rescue OperationFailedError => e
|
401
|
+
ui.error "#{format_path.call(e.entry)} failed to #{e.operation}: #{e.message}" if ui
|
402
|
+
error = true
|
403
|
+
rescue OperationNotAllowedError => e
|
404
|
+
ui.error "#{format_path.call(e.entry)} #{e.reason}." if ui
|
405
|
+
error = true
|
394
406
|
end
|
395
|
-
|
396
|
-
ui.warn "#{format_path.call(e.entry)} #{e.reason}." if ui
|
397
|
-
rescue DefaultEnvironmentCannotBeModifiedError => e
|
398
|
-
ui.warn "#{format_path.call(e.entry)} #{e.reason}." if ui
|
399
|
-
rescue OperationFailedError => e
|
400
|
-
ui.error "#{format_path.call(e.entry)} failed to #{e.operation}: #{e.message}" if ui
|
401
|
-
error = true
|
402
|
-
rescue OperationNotAllowedError => e
|
403
|
-
ui.error "#{format_path.call(e.entry)} #{e.reason}." if ui
|
404
|
-
error = true
|
407
|
+
error
|
405
408
|
end
|
406
|
-
error
|
407
|
-
end
|
408
409
|
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
410
|
+
def get_or_create_parent(entry, options, ui, format_path)
|
411
|
+
parent = entry.parent
|
412
|
+
if parent && !parent.exists?
|
413
|
+
parent_path = format_path.call(parent) if ui
|
414
|
+
parent_parent = get_or_create_parent(parent, options, ui, format_path)
|
415
|
+
if options[:dry_run]
|
416
|
+
ui.output "Would create #{parent_path}" if ui
|
417
|
+
else
|
418
|
+
parent = parent_parent.create_child(parent.name, nil)
|
419
|
+
ui.output "Created #{parent_path}" if ui
|
420
|
+
end
|
419
421
|
end
|
422
|
+
return parent
|
420
423
|
end
|
421
|
-
return parent
|
422
|
-
end
|
423
424
|
|
424
|
-
|
425
|
-
|
425
|
+
def parallel_do(enum, options = {}, &block)
|
426
|
+
Chef::ChefFS::Parallelizer.parallel_do(enum, options, &block)
|
427
|
+
end
|
426
428
|
end
|
427
429
|
end
|
428
430
|
end
|