chef 12.0.0.alpha.2-x86-mingw32 → 12.0.0.rc.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/CONTRIBUTING.md +9 -0
- data/README.md +1 -1
- data/Rakefile +12 -0
- data/bin/chef-service-manager +1 -1
- data/bin/chef-windows-service +35 -0
- data/distro/common/html/_sources/ctl_chef_server.txt +307 -10
- data/distro/common/html/ctl_chef_client.html +3 -7
- data/distro/common/html/ctl_chef_server.html +609 -41
- data/distro/common/html/ctl_chef_shell.html +2 -2
- data/distro/common/html/ctl_chef_solo.html +1 -1
- data/distro/common/html/index.html +13 -13
- data/distro/common/html/knife.html +10 -10
- data/distro/common/html/knife_bootstrap.html +8 -8
- data/distro/common/html/knife_client.html +12 -12
- data/distro/common/html/knife_common_options.html +7 -7
- data/distro/common/html/knife_configure.html +3 -3
- data/distro/common/html/knife_cookbook.html +19 -19
- data/distro/common/html/knife_cookbook_site.html +28 -28
- data/distro/common/html/knife_data_bag.html +28 -13
- data/distro/common/html/knife_delete.html +2 -2
- data/distro/common/html/knife_deps.html +3 -3
- data/distro/common/html/knife_diff.html +4 -4
- data/distro/common/html/knife_download.html +3 -3
- data/distro/common/html/knife_edit.html +2 -2
- data/distro/common/html/knife_environment.html +14 -14
- data/distro/common/html/knife_exec.html +11 -11
- data/distro/common/html/knife_index_rebuild.html +2 -2
- data/distro/common/html/knife_list.html +3 -3
- data/distro/common/html/knife_node.html +23 -23
- data/distro/common/html/knife_raw.html +4 -4
- data/distro/common/html/knife_recipe_list.html +3 -3
- data/distro/common/html/knife_role.html +11 -11
- data/distro/common/html/knife_search.html +4 -4
- data/distro/common/html/knife_serve.html +3 -3
- data/distro/common/html/knife_show.html +3 -3
- data/distro/common/html/knife_ssh.html +7 -7
- data/distro/common/html/knife_ssl_check.html +7 -7
- data/distro/common/html/knife_ssl_fetch.html +9 -9
- data/distro/common/html/knife_status.html +3 -3
- data/distro/common/html/knife_tag.html +9 -9
- data/distro/common/html/knife_upload.html +3 -3
- data/distro/common/html/knife_user.html +9 -9
- data/distro/common/html/knife_using.html +11 -11
- data/distro/common/html/knife_xargs.html +14 -5
- data/distro/common/html/search.html +2 -2
- data/distro/common/html/searchindex.js +1 -1
- data/distro/common/man/man1/chef-shell.1 +2 -2
- data/distro/common/man/man1/knife-bootstrap.1 +7 -7
- data/distro/common/man/man1/knife-client.1 +10 -10
- data/distro/common/man/man1/knife-configure.1 +5 -5
- data/distro/common/man/man1/knife-cookbook-site.1 +24 -24
- data/distro/common/man/man1/knife-cookbook.1 +12 -12
- data/distro/common/man/man1/knife-data-bag.1 +34 -10
- data/distro/common/man/man1/knife-delete.1 +5 -5
- data/distro/common/man/man1/knife-deps.1 +5 -5
- data/distro/common/man/man1/knife-diff.1 +7 -7
- data/distro/common/man/man1/knife-download.1 +5 -5
- data/distro/common/man/man1/knife-edit.1 +5 -5
- data/distro/common/man/man1/knife-environment.1 +11 -11
- data/distro/common/man/man1/knife-exec.1 +11 -11
- data/distro/common/man/man1/knife-index-rebuild.1 +1 -1
- data/distro/common/man/man1/knife-list.1 +5 -5
- data/distro/common/man/man1/knife-node.1 +16 -16
- data/distro/common/man/man1/knife-raw.1 +6 -6
- data/distro/common/man/man1/knife-recipe-list.1 +1 -1
- data/distro/common/man/man1/knife-role.1 +7 -7
- data/distro/common/man/man1/knife-search.1 +6 -6
- data/distro/common/man/man1/knife-serve.1 +6 -6
- data/distro/common/man/man1/knife-show.1 +5 -5
- data/distro/common/man/man1/knife-ssh.1 +9 -9
- data/distro/common/man/man1/knife-ssl-check.1 +7 -7
- data/distro/common/man/man1/knife-ssl-fetch.1 +9 -9
- data/distro/common/man/man1/knife-status.1 +5 -5
- data/distro/common/man/man1/knife-tag.1 +8 -8
- data/distro/common/man/man1/knife-upload.1 +5 -5
- data/distro/common/man/man1/knife-user.1 +8 -8
- data/distro/common/man/man1/knife-xargs.1 +36 -10
- data/distro/common/man/man1/knife.1 +14 -14
- data/distro/common/man/man8/chef-client.8 +3 -10
- data/distro/common/man/man8/chef-solo.8 +1 -1
- data/ext/win32-eventlog/Rakefile +50 -0
- data/ext/win32-eventlog/chef-log.man +26 -0
- data/lib/chef/application.rb +313 -241
- data/lib/chef/application/apply.rb +10 -8
- data/lib/chef/application/client.rb +58 -33
- data/lib/chef/application/solo.rb +33 -12
- data/lib/chef/chef_fs/chef_fs_data_store.rb +1 -1
- data/lib/chef/chef_fs/command_line.rb +1 -1
- data/lib/chef/chef_fs/file_system/organization_invites_entry.rb +2 -1
- data/lib/chef/chef_fs/file_system/organization_members_entry.rb +2 -1
- data/lib/chef/chef_fs/file_system/rest_list_entry.rb +2 -1
- data/lib/chef/client.rb +18 -48
- data/lib/chef/config.rb +43 -11
- data/lib/chef/cookbook/cookbook_version_loader.rb +14 -7
- data/lib/chef/cookbook/metadata.rb +81 -38
- data/lib/chef/cookbook/syntax_check.rb +18 -52
- data/lib/chef/cookbook_loader.rb +1 -1
- data/lib/chef/cookbook_version.rb +58 -39
- data/lib/chef/data_bag.rb +2 -2
- data/lib/chef/deprecation/provider/file.rb +2 -1
- data/lib/chef/dsl/data_query.rb +2 -29
- data/lib/chef/dsl/recipe.rb +8 -22
- data/lib/chef/encrypted_data_bag_item/assertions.rb +1 -1
- data/lib/chef/encrypted_data_bag_item/check_encrypted.rb +56 -0
- data/lib/chef/encrypted_data_bag_item/encrypted_data_bag_item_assertions.rb +1 -1
- data/lib/chef/event_loggers/base.rb +62 -0
- data/lib/chef/event_loggers/windows_eventlog.rb +104 -0
- data/lib/chef/exceptions.rb +18 -1
- data/lib/chef/file_cache.rb +3 -2
- data/lib/chef/guard_interpreter/resource_guard_interpreter.rb +15 -6
- data/lib/chef/http.rb +20 -13
- data/lib/chef/http/ssl_policies.rb +2 -1
- data/lib/chef/json_compat.rb +9 -3
- data/lib/chef/knife.rb +2 -1
- data/lib/chef/knife/bootstrap.rb +12 -18
- data/lib/chef/knife/bootstrap/archlinux-gems.erb +2 -2
- data/lib/chef/knife/bootstrap/chef-aix.erb +2 -2
- data/lib/chef/knife/bootstrap/chef-full.erb +2 -2
- data/lib/chef/knife/cookbook_create.rb +1 -1
- data/lib/chef/knife/cookbook_site_share.rb +43 -8
- data/lib/chef/knife/core/bootstrap_context.rb +6 -11
- data/lib/chef/knife/core/object_loader.rb +5 -5
- data/lib/chef/knife/core/status_presenter.rb +156 -0
- data/lib/chef/knife/core/subcommand_loader.rb +6 -5
- data/lib/chef/knife/core/ui.rb +4 -4
- data/lib/chef/knife/data_bag_create.rb +7 -32
- data/lib/chef/knife/data_bag_edit.rb +24 -43
- data/lib/chef/knife/data_bag_from_file.rb +6 -31
- data/lib/chef/knife/data_bag_secret_options.rb +142 -0
- data/lib/chef/knife/data_bag_show.rb +19 -33
- data/lib/chef/knife/node_from_file.rb +9 -8
- data/lib/chef/knife/ssh.rb +0 -7
- data/lib/chef/knife/ssl_check.rb +70 -6
- data/lib/chef/knife/status.rb +11 -58
- data/lib/chef/mixin/command/unix.rb +2 -2
- data/lib/chef/mixin/convert_to_class_name.rb +54 -0
- data/lib/chef/mixin/descendants_tracker.rb +82 -0
- data/lib/chef/mixin/homebrew_user.rb +68 -0
- data/lib/chef/mixin/shell_out.rb +0 -4
- data/lib/chef/mixin/windows_architecture_helper.rb +16 -0
- data/lib/chef/mixin/windows_env_helper.rb +56 -0
- data/lib/chef/node.rb +2 -2
- data/lib/chef/node_map.rb +146 -0
- data/lib/chef/platform/provider_mapping.rb +11 -39
- data/lib/chef/platform/provider_priority_map.rb +80 -0
- data/lib/chef/platform/query_helpers.rb +5 -1
- data/lib/chef/platform/service_helpers.rb +113 -0
- data/lib/chef/provider.rb +24 -0
- data/lib/chef/provider/breakpoint.rb +2 -0
- data/lib/chef/provider/cookbook_file.rb +2 -0
- data/lib/chef/provider/cron.rb +1 -1
- data/lib/chef/provider/cron/unix.rb +13 -9
- data/lib/chef/provider/deploy.rb +3 -2
- data/lib/chef/provider/deploy/revision.rb +4 -2
- data/lib/chef/provider/deploy/timestamped.rb +2 -0
- data/lib/chef/provider/directory.rb +2 -0
- data/lib/chef/provider/dsc_script.rb +179 -0
- data/lib/chef/provider/env.rb +25 -10
- data/lib/chef/provider/env/windows.rb +9 -16
- data/lib/chef/provider/erl_call.rb +2 -0
- data/lib/chef/provider/execute.rb +5 -2
- data/lib/chef/provider/file.rb +2 -0
- data/lib/chef/provider/git.rb +51 -23
- data/lib/chef/provider/group/dscl.rb +2 -2
- data/lib/chef/provider/group/pw.rb +9 -13
- data/lib/chef/provider/http_request.rb +2 -0
- data/lib/chef/provider/link.rb +3 -0
- data/lib/chef/provider/log.rb +2 -0
- data/lib/chef/provider/lwrp_base.rb +11 -9
- data/lib/chef/provider/mount/mount.rb +1 -1
- data/lib/chef/provider/package/aix.rb +2 -0
- data/lib/chef/provider/package/apt.rb +2 -0
- data/lib/chef/provider/package/dpkg.rb +2 -0
- data/lib/chef/provider/package/easy_install.rb +2 -0
- data/lib/chef/provider/package/freebsd/pkg.rb +2 -1
- data/lib/chef/provider/package/freebsd/pkgng.rb +1 -1
- data/lib/chef/provider/package/freebsd/port.rb +1 -9
- data/lib/chef/provider/package/homebrew.rb +127 -0
- data/lib/chef/provider/package/ips.rb +2 -0
- data/lib/chef/provider/package/macports.rb +3 -0
- data/lib/chef/provider/package/pacman.rb +5 -4
- data/lib/chef/provider/package/paludis.rb +4 -2
- data/lib/chef/provider/package/portage.rb +4 -1
- data/lib/chef/provider/package/rpm.rb +2 -0
- data/lib/chef/provider/package/rubygems.rb +4 -0
- data/lib/chef/provider/package/smartos.rb +2 -0
- data/lib/chef/provider/package/solaris.rb +2 -0
- data/lib/chef/provider/package/windows.rb +5 -2
- data/lib/chef/provider/package/yum.rb +2 -0
- data/lib/chef/provider/powershell_script.rb +3 -1
- data/lib/chef/provider/remote_directory.rb +25 -10
- data/lib/chef/provider/route.rb +2 -0
- data/lib/chef/provider/ruby_block.rb +2 -0
- data/lib/chef/provider/script.rb +6 -0
- data/lib/chef/provider/service/aix.rb +128 -0
- data/lib/chef/provider/service/aixinit.rb +117 -0
- data/lib/chef/provider/service/arch.rb +6 -0
- data/lib/chef/provider/service/debian.rb +35 -29
- data/lib/chef/provider/service/freebsd.rb +7 -1
- data/lib/chef/provider/service/gentoo.rb +5 -1
- data/lib/chef/provider/service/init.rb +2 -0
- data/lib/chef/provider/service/insserv.rb +15 -8
- data/lib/chef/provider/service/invokercd.rb +6 -0
- data/lib/chef/provider/service/macosx.rb +4 -1
- data/lib/chef/provider/service/redhat.rb +9 -3
- data/lib/chef/provider/service/simple.rb +2 -0
- data/lib/chef/provider/service/solaris.rb +2 -0
- data/lib/chef/provider/service/systemd.rb +7 -0
- data/lib/chef/provider/service/upstart.rb +7 -0
- data/lib/chef/provider/service/windows.rb +5 -0
- data/lib/chef/provider/subversion.rb +2 -0
- data/lib/chef/provider/template.rb +1 -0
- data/lib/chef/provider/user/dscl.rb +3 -2
- data/lib/chef/provider/whyrun_safe_ruby_block.rb +2 -0
- data/lib/chef/provider_resolver.rb +103 -0
- data/lib/chef/providers.rb +6 -2
- data/lib/chef/recipe.rb +2 -0
- data/lib/chef/resource.rb +69 -78
- data/lib/chef/resource/apt_package.rb +3 -1
- data/lib/chef/resource/bash.rb +1 -0
- data/lib/chef/resource/bff_package.rb +0 -1
- data/lib/chef/resource/breakpoint.rb +1 -1
- data/lib/chef/resource/chef_gem.rb +1 -2
- data/lib/chef/resource/conditional.rb +26 -6
- data/lib/chef/resource/cookbook_file.rb +2 -3
- data/lib/chef/resource/csh.rb +1 -0
- data/lib/chef/resource/deploy.rb +0 -1
- data/lib/chef/resource/deploy_revision.rb +6 -1
- data/lib/chef/resource/directory.rb +1 -2
- data/lib/chef/resource/dpkg_package.rb +2 -1
- data/lib/chef/resource/dsc_script.rb +125 -0
- data/lib/chef/resource/easy_install_package.rb +2 -1
- data/lib/chef/resource/erl_call.rb +1 -0
- data/lib/chef/resource/execute.rb +26 -9
- data/lib/chef/resource/file.rb +1 -3
- data/lib/chef/resource/freebsd_package.rb +10 -23
- data/lib/chef/resource/gem_package.rb +2 -1
- data/lib/chef/resource/git.rb +2 -1
- data/lib/chef/resource/homebrew_package.rb +46 -0
- data/lib/chef/resource/http_request.rb +1 -0
- data/lib/chef/resource/ips_package.rb +3 -1
- data/lib/chef/resource/link.rb +1 -2
- data/lib/chef/resource/log.rb +4 -0
- data/lib/chef/resource/lwrp_base.rb +24 -15
- data/lib/chef/resource/macports_package.rb +3 -1
- data/lib/chef/resource/pacman_package.rb +2 -1
- data/lib/chef/resource/paludis_package.rb +3 -1
- data/lib/chef/resource/perl.rb +1 -0
- data/lib/chef/resource/powershell_script.rb +0 -2
- data/lib/chef/resource/python.rb +1 -1
- data/lib/chef/resource/remote_directory.rb +1 -2
- data/lib/chef/resource/remote_file.rb +1 -1
- data/lib/chef/resource/rpm_package.rb +2 -1
- data/lib/chef/resource/ruby.rb +1 -0
- data/lib/chef/resource/ruby_block.rb +3 -0
- data/lib/chef/resource/script.rb +2 -25
- data/lib/chef/resource/service.rb +0 -4
- data/lib/chef/resource/smartos_package.rb +3 -4
- data/lib/chef/resource/solaris_package.rb +7 -1
- data/lib/chef/resource/subversion.rb +0 -1
- data/lib/chef/resource/template.rb +2 -3
- data/lib/chef/resource/timestamped_deploy.rb +1 -2
- data/lib/chef/resource/whyrun_safe_ruby_block.rb +0 -1
- data/lib/chef/resource/windows_package.rb +3 -4
- data/lib/chef/resource/windows_script.rb +3 -0
- data/lib/chef/resource/windows_service.rb +2 -2
- data/lib/chef/resource/yum_package.rb +3 -1
- data/lib/chef/resource_collection.rb +50 -227
- data/lib/chef/resource_collection/resource_collection_serialization.rb +59 -0
- data/lib/chef/resource_collection/resource_list.rb +89 -0
- data/lib/chef/resource_collection/resource_set.rb +170 -0
- data/lib/chef/resources.rb +2 -0
- data/lib/chef/role.rb +1 -1
- data/lib/chef/run_context.rb +5 -1
- data/lib/chef/shell/ext.rb +1 -1
- data/lib/chef/util/backup.rb +3 -2
- data/lib/chef/util/dsc/configuration_generator.rb +115 -0
- data/lib/chef/util/dsc/lcm_output_parser.rb +133 -0
- data/lib/chef/util/dsc/local_configuration_manager.rb +141 -0
- data/lib/chef/util/dsc/resource_info.rb +26 -0
- data/lib/chef/util/path_helper.rb +12 -0
- data/lib/chef/util/powershell/cmdlet.rb +136 -0
- data/lib/chef/util/powershell/cmdlet_result.rb +46 -0
- data/lib/chef/version.rb +1 -1
- data/lib/chef/win32/api/system.rb +9 -0
- data/lib/chef/win32/version.rb +2 -0
- data/spec/.DS_Store +0 -0
- data/spec/data/.DS_Store +0 -0
- data/spec/data/bootstrap/test-hints.erb +1 -1
- data/spec/data/bootstrap/test.erb +1 -1
- data/spec/data/cb_version_cookbooks/cookbook2/files/test.txt +0 -0
- data/spec/data/cb_version_cookbooks/cookbook2/templates/test.erb +0 -0
- data/spec/data/cookbooks/ignorken/files/default/not_me.rb +2 -0
- data/spec/data/cookbooks/ignorken/templates/ubuntu-12.10/not_me.rb +2 -0
- data/spec/data/cookbooks/openldap/libraries/openldap.rb +4 -0
- data/spec/data/cookbooks/openldap/libraries/openldap/version.rb +3 -0
- data/spec/data/lwrp/.DS_Store +0 -0
- data/spec/data/lwrp/providers/.DS_Store +0 -0
- data/spec/data/lwrp/providers/buck_passer.rb +9 -2
- data/spec/data/lwrp/resources/.DS_Store +0 -0
- data/spec/data/lwrp/resources/foo.rb +3 -2
- data/spec/data/lwrp_override/.DS_Store +0 -0
- data/spec/data/lwrp_override/providers/.DS_Store +0 -0
- data/spec/data/lwrp_override/providers/buck_passer.rb +5 -10
- data/spec/data/lwrp_override/resources/.DS_Store +0 -0
- data/spec/data/lwrp_override/resources/foo.rb +4 -3
- data/spec/functional/assets/chefinittest +34 -0
- data/spec/functional/assets/testchefsubsys +11 -0
- data/spec/functional/dsl/reboot_pending_spec.rb +19 -16
- data/spec/functional/event_loggers/windows_eventlog_spec.rb +82 -0
- data/spec/functional/knife/cookbook_delete_spec.rb +3 -3
- data/spec/functional/knife/exec_spec.rb +1 -1
- data/spec/functional/resource/aix_service_spec.rb +136 -0
- data/spec/functional/resource/aixinit_service_spec.rb +211 -0
- data/spec/functional/resource/base.rb +1 -0
- data/spec/functional/resource/batch_spec.rb +4 -11
- data/spec/functional/resource/cron_spec.rb +7 -1
- data/spec/functional/resource/dsc_script_spec.rb +382 -0
- data/spec/functional/resource/env_spec.rb +54 -0
- data/spec/functional/resource/execute_spec.rb +113 -0
- data/spec/functional/resource/file_spec.rb +2 -0
- data/spec/functional/resource/group_spec.rb +7 -4
- data/spec/functional/resource/powershell_spec.rb +198 -185
- data/spec/functional/resource/rpm_spec.rb +5 -4
- data/spec/functional/resource/user/dscl_spec.rb +2 -1
- data/spec/functional/util/path_helper_spec.rb +37 -0
- data/spec/functional/util/powershell/cmdlet_spec.rb +114 -0
- data/spec/integration/client/client_spec.rb +1 -1
- data/spec/integration/client/ipv6_spec.rb +1 -1
- data/spec/integration/knife/chef_fs_data_store_spec.rb +1 -1
- data/spec/integration/knife/chef_repo_path_spec.rb +1 -1
- data/spec/integration/knife/chef_repository_file_system_spec.rb +1 -1
- data/spec/integration/knife/chefignore_spec.rb +1 -1
- data/spec/integration/knife/common_options_spec.rb +1 -1
- data/spec/integration/knife/cookbook_api_ipv6_spec.rb +2 -2
- data/spec/integration/knife/delete_spec.rb +1 -1
- data/spec/integration/knife/deps_spec.rb +1 -1
- data/spec/integration/knife/diff_spec.rb +1 -1
- data/spec/integration/knife/download_spec.rb +1 -1
- data/spec/integration/knife/list_spec.rb +1 -1
- data/spec/integration/knife/raw_spec.rb +1 -1
- data/spec/integration/knife/redirection_spec.rb +1 -1
- data/spec/integration/knife/serve_spec.rb +1 -1
- data/spec/integration/knife/show_spec.rb +1 -1
- data/spec/integration/knife/upload_spec.rb +4 -3
- data/spec/integration/recipes/lwrp_inline_resources_spec.rb +1 -1
- data/spec/spec_helper.rb +15 -0
- data/spec/support/chef_helpers.rb +1 -0
- data/spec/support/lib/chef/provider/snakeoil.rb +1 -0
- data/spec/support/lib/chef/resource/zen_follower.rb +1 -7
- data/spec/support/platform_helpers.rb +28 -0
- data/spec/support/shared/functional/file_resource.rb +6 -0
- data/spec/support/shared/functional/windows_script.rb +118 -0
- data/spec/support/shared/integration/integration_helper.rb +5 -2
- data/spec/support/shared/matchers/exit_with_code.rb +28 -0
- data/spec/support/shared/matchers/match_environment_variable.rb +17 -0
- data/spec/support/shared/shared_examples.rb +14 -0
- data/spec/support/shared/unit/execute_resource.rb +0 -7
- data/spec/support/shared/unit/resource/static_provider_resolution.rb +71 -0
- data/spec/support/shared/unit/script_resource.rb +1 -1
- data/spec/support/shared/unit/windows_script_resource.rb +35 -2
- data/spec/tiny_server.rb +1 -2
- data/spec/unit/api_client_spec.rb +5 -1
- data/spec/unit/application/{apply.rb → apply_spec.rb} +13 -5
- data/spec/unit/application/client_spec.rb +106 -13
- data/spec/unit/application/solo_spec.rb +25 -1
- data/spec/unit/client_spec.rb +1 -26
- data/spec/unit/config_fetcher_spec.rb +2 -1
- data/spec/unit/config_spec.rb +91 -2
- data/spec/unit/cookbook/cookbook_version_loader_spec.rb +8 -0
- data/spec/unit/cookbook/metadata_spec.rb +43 -6
- data/spec/unit/cookbook/syntax_check_spec.rb +8 -2
- data/spec/unit/cookbook_loader_spec.rb +4 -2
- data/spec/unit/cookbook_version_spec.rb +83 -2
- data/spec/unit/data_bag_item_spec.rb +5 -1
- data/spec/unit/data_bag_spec.rb +6 -1
- data/spec/unit/dsl/data_query_spec.rb +8 -110
- data/spec/unit/encrypted_data_bag_item/check_encrypted_spec.rb +95 -0
- data/spec/unit/encrypted_data_bag_item_spec.rb +16 -23
- data/spec/unit/environment_spec.rb +6 -2
- data/spec/unit/exceptions_spec.rb +6 -0
- data/spec/unit/guard_interpreter/resource_guard_interpreter_spec.rb +16 -15
- data/spec/unit/json_compat_spec.rb +12 -2
- data/spec/unit/knife/bootstrap_spec.rb +16 -63
- data/spec/unit/knife/cookbook_site_share_spec.rb +59 -6
- data/spec/unit/knife/core/bootstrap_context_spec.rb +8 -37
- data/spec/unit/knife/core/subcommand_loader_spec.rb +1 -1
- data/spec/unit/knife/core/ui_spec.rb +28 -0
- data/spec/unit/knife/data_bag_create_spec.rb +63 -71
- data/spec/unit/knife/data_bag_edit_spec.rb +83 -49
- data/spec/unit/knife/data_bag_from_file_spec.rb +104 -126
- data/spec/unit/knife/data_bag_secret_options_spec.rb +165 -0
- data/spec/unit/knife/data_bag_show_spec.rb +74 -72
- data/spec/unit/knife/environment_from_file_spec.rb +3 -2
- data/spec/unit/knife/ssl_check_spec.rb +46 -1
- data/spec/unit/knife/status_spec.rb +1 -2
- data/spec/unit/knife_spec.rb +18 -1
- data/spec/unit/lwrp_spec.rb +29 -8
- data/spec/unit/mixin/homebrew_user_spec.rb +100 -0
- data/spec/unit/node_map_spec.rb +155 -0
- data/spec/unit/node_spec.rb +11 -0
- data/spec/unit/platform/query_helpers_spec.rb +23 -0
- data/spec/unit/platform_spec.rb +23 -0
- data/spec/unit/provider/breakpoint_spec.rb +9 -9
- data/spec/unit/provider/cookbook_file/content_spec.rb +3 -3
- data/spec/unit/provider/cookbook_file_spec.rb +1 -1
- data/spec/unit/provider/cron/unix_spec.rb +78 -60
- data/spec/unit/provider/cron_spec.rb +175 -175
- data/spec/unit/provider/deploy/revision_spec.rb +22 -21
- data/spec/unit/provider/deploy/timestamped_spec.rb +3 -3
- data/spec/unit/provider/deploy_spec.rb +231 -230
- data/spec/unit/provider/directory_spec.rb +55 -55
- data/spec/unit/provider/dsc_script_spec.rb +174 -0
- data/spec/unit/provider/env/windows_spec.rb +70 -34
- data/spec/unit/provider/env_spec.rb +95 -49
- data/spec/unit/provider/erl_call_spec.rb +9 -9
- data/spec/unit/provider/execute_spec.rb +43 -27
- data/spec/unit/provider/file/content_spec.rb +9 -9
- data/spec/unit/provider/file_spec.rb +1 -1
- data/spec/unit/provider/git_spec.rb +221 -159
- data/spec/unit/provider/group/dscl_spec.rb +64 -63
- data/spec/unit/provider/group/gpasswd_spec.rb +14 -14
- data/spec/unit/provider/group/groupadd_spec.rb +33 -33
- data/spec/unit/provider/group/groupmod_spec.rb +23 -23
- data/spec/unit/provider/group/pw_spec.rb +21 -21
- data/spec/unit/provider/group/usermod_spec.rb +20 -20
- data/spec/unit/provider/group/windows_spec.rb +15 -15
- data/spec/unit/provider/group_spec.rb +76 -76
- data/spec/unit/provider/http_request_spec.rb +30 -30
- data/spec/unit/provider/ifconfig/aix_spec.rb +20 -20
- data/spec/unit/provider/ifconfig/debian_spec.rb +25 -9
- data/spec/unit/provider/ifconfig/redhat_spec.rb +13 -13
- data/spec/unit/provider/ifconfig_spec.rb +43 -43
- data/spec/unit/provider/link_spec.rb +60 -60
- data/spec/unit/provider/log_spec.rb +0 -4
- data/spec/unit/provider/mdadm_spec.rb +23 -23
- data/spec/unit/provider/mount/aix_spec.rb +17 -17
- data/spec/unit/provider/mount/mount_spec.rb +115 -119
- data/spec/unit/provider/mount/solaris_spec.rb +72 -72
- data/spec/unit/provider/mount/windows_spec.rb +24 -24
- data/spec/unit/provider/ohai_spec.rb +11 -11
- data/spec/unit/provider/package/aix_spec.rb +34 -34
- data/spec/unit/provider/package/apt_spec.rb +36 -36
- data/spec/unit/provider/package/dpkg_spec.rb +27 -27
- data/spec/unit/provider/package/easy_install_spec.rb +16 -16
- data/spec/unit/provider/package/freebsd/pkg_spec.rb +53 -53
- data/spec/unit/provider/package/freebsd/pkgng_spec.rb +24 -24
- data/spec/unit/provider/package/freebsd/port_spec.rb +45 -35
- data/spec/unit/provider/package/homebrew_spec.rb +266 -0
- data/spec/unit/provider/package/ips_spec.rb +34 -34
- data/spec/unit/provider/package/macports_spec.rb +49 -49
- data/spec/unit/provider/package/pacman_spec.rb +35 -39
- data/spec/unit/provider/package/paludis_spec.rb +20 -20
- data/spec/unit/provider/package/portage_spec.rb +38 -38
- data/spec/unit/provider/package/rpm_spec.rb +29 -29
- data/spec/unit/provider/package/rubygems_spec.rb +284 -270
- data/spec/unit/provider/package/smartos_spec.rb +15 -15
- data/spec/unit/provider/package/solaris_spec.rb +35 -35
- data/spec/unit/provider/package/windows/msi_spec.rb +3 -3
- data/spec/unit/provider/package/windows_spec.rb +6 -6
- data/spec/unit/provider/package/yum_spec.rb +416 -416
- data/spec/unit/provider/package/zypper_spec.rb +47 -47
- data/spec/unit/provider/package_spec.rb +107 -107
- data/spec/unit/provider/powershell_spec.rb +1 -1
- data/spec/unit/provider/registry_key_spec.rb +61 -61
- data/spec/unit/provider/remote_directory_spec.rb +36 -36
- data/spec/unit/provider/remote_file/cache_control_data_spec.rb +24 -24
- data/spec/unit/provider/remote_file/content_spec.rb +45 -45
- data/spec/unit/provider/remote_file/fetcher_spec.rb +9 -9
- data/spec/unit/provider/remote_file/ftp_spec.rb +32 -32
- data/spec/unit/provider/remote_file/http_spec.rb +44 -44
- data/spec/unit/provider/remote_file/local_file_spec.rb +9 -9
- data/spec/unit/provider/remote_file_spec.rb +3 -3
- data/spec/unit/provider/route_spec.rb +63 -63
- data/spec/unit/provider/ruby_block_spec.rb +4 -4
- data/spec/unit/provider/script_spec.rb +12 -12
- data/spec/unit/provider/service/aix_service_spec.rb +181 -0
- data/spec/unit/provider/service/aixinit_service_spec.rb +269 -0
- data/spec/unit/provider/service/arch_service_spec.rb +48 -48
- data/spec/unit/provider/service/debian_service_spec.rb +40 -40
- data/spec/unit/provider/service/gentoo_service_spec.rb +28 -28
- data/spec/unit/provider/service/init_service_spec.rb +39 -39
- data/spec/unit/provider/service/insserv_service_spec.rb +8 -8
- data/spec/unit/provider/service/invokercd_service_spec.rb +35 -35
- data/spec/unit/provider/service/macosx_spec.rb +49 -49
- data/spec/unit/provider/service/redhat_spec.rb +27 -27
- data/spec/unit/provider/service/simple_service_spec.rb +28 -28
- data/spec/unit/provider/service/solaris_smf_service_spec.rb +43 -46
- data/spec/unit/provider/service/systemd_service_spec.rb +63 -63
- data/spec/unit/provider/service/upstart_service_spec.rb +78 -78
- data/spec/unit/provider/service/windows_spec.rb +92 -92
- data/spec/unit/provider/service_spec.rb +40 -40
- data/spec/unit/provider/subversion_spec.rb +80 -80
- data/spec/unit/provider/template/content_spec.rb +9 -9
- data/spec/unit/provider/template_spec.rb +6 -6
- data/spec/unit/provider/user/dscl_spec.rb +170 -167
- data/spec/unit/provider/user/pw_spec.rb +48 -48
- data/spec/unit/provider/user/solaris_spec.rb +8 -8
- data/spec/unit/provider/user/useradd_spec.rb +1 -1
- data/spec/unit/provider/user/windows_spec.rb +26 -26
- data/spec/unit/provider/user_spec.rb +72 -72
- data/spec/unit/provider/whyrun_safe_ruby_block_spec.rb +4 -4
- data/spec/unit/provider_resolver_spec.rb +387 -0
- data/spec/unit/recipe_spec.rb +33 -12
- data/spec/unit/resource/apt_package_spec.rb +10 -13
- data/spec/unit/resource/bash_spec.rb +4 -4
- data/spec/unit/resource/batch_spec.rb +1 -1
- data/spec/unit/resource/breakpoint_spec.rb +11 -7
- data/spec/unit/resource/chef_gem_spec.rb +8 -15
- data/spec/unit/resource/conditional_action_not_nothing_spec.rb +2 -2
- data/spec/unit/resource/conditional_spec.rb +35 -16
- data/spec/unit/resource/cookbook_file_spec.rb +13 -13
- data/spec/unit/resource/cron_spec.rb +37 -37
- data/spec/unit/resource/csh_spec.rb +4 -4
- data/spec/unit/resource/deploy_revision_spec.rb +13 -18
- data/spec/unit/resource/deploy_spec.rb +60 -55
- data/spec/unit/resource/directory_spec.rb +18 -18
- data/spec/unit/resource/dpkg_package_spec.rb +8 -14
- data/spec/unit/resource/dsc_script_spec.rb +98 -0
- data/spec/unit/resource/easy_install_package_spec.rb +9 -18
- data/spec/unit/resource/env_spec.rb +12 -12
- data/spec/unit/resource/erl_call_spec.rb +11 -11
- data/spec/unit/resource/execute_spec.rb +5 -0
- data/spec/unit/resource/file_spec.rb +29 -29
- data/spec/unit/resource/freebsd_package_spec.rb +11 -12
- data/spec/unit/resource/gem_package_spec.rb +8 -15
- data/spec/unit/resource/git_spec.rb +12 -8
- data/spec/unit/resource/group_spec.rb +27 -27
- data/spec/unit/resource/homebrew_package_spec.rb +50 -0
- data/spec/unit/resource/http_request_spec.rb +6 -6
- data/spec/unit/resource/ifconfig_spec.rb +8 -8
- data/spec/unit/resource/ips_package_spec.rb +10 -13
- data/spec/unit/resource/link_spec.rb +25 -25
- data/spec/unit/resource/log_spec.rb +9 -9
- data/spec/unit/resource/macports_package_spec.rb +8 -13
- data/spec/unit/resource/mdadm_spec.rb +18 -18
- data/spec/unit/resource/mount_spec.rb +45 -45
- data/spec/unit/resource/ohai_spec.rb +7 -7
- data/spec/unit/resource/package_spec.rb +12 -12
- data/spec/unit/resource/pacman_package_spec.rb +8 -14
- data/spec/unit/resource/perl_spec.rb +4 -4
- data/spec/unit/resource/portage_package_spec.rb +3 -3
- data/spec/unit/resource/powershell_spec.rb +7 -7
- data/spec/unit/resource/python_spec.rb +4 -4
- data/spec/unit/resource/registry_key_spec.rb +32 -32
- data/spec/unit/resource/remote_directory_spec.rb +17 -17
- data/spec/unit/resource/remote_file_spec.rb +41 -41
- data/spec/unit/resource/route_spec.rb +19 -19
- data/spec/unit/resource/rpm_package_spec.rb +9 -13
- data/spec/unit/resource/ruby_block_spec.rb +8 -8
- data/spec/unit/resource/ruby_spec.rb +4 -4
- data/spec/unit/resource/scm_spec.rb +40 -40
- data/spec/unit/resource/script_spec.rb +2 -2
- data/spec/unit/resource/service_spec.rb +37 -47
- data/spec/unit/resource/smartos_package_spec.rb +10 -15
- data/spec/unit/resource/solaris_package_spec.rb +13 -28
- data/spec/unit/resource/subversion_spec.rb +16 -12
- data/spec/unit/resource/template_spec.rb +35 -35
- data/spec/unit/resource/timestamped_deploy_spec.rb +30 -4
- data/spec/unit/resource/user_spec.rb +23 -23
- data/spec/unit/resource/windows_package_spec.rb +17 -10
- data/spec/unit/resource/windows_service_spec.rb +9 -6
- data/spec/unit/resource/yum_package_spec.rb +16 -21
- data/spec/unit/resource_collection/resource_list_spec.rb +137 -0
- data/spec/unit/resource_collection/resource_set_spec.rb +199 -0
- data/spec/unit/resource_collection_spec.rb +73 -92
- data/spec/unit/resource_definition_spec.rb +38 -40
- data/spec/unit/resource_reporter_spec.rb +3 -3
- data/spec/unit/resource_spec.rb +68 -33
- data/spec/unit/rest_spec.rb +83 -76
- data/spec/unit/role_spec.rb +5 -0
- data/spec/unit/run_list_spec.rb +5 -1
- data/spec/unit/runner_spec.rb +245 -238
- data/spec/unit/shell/shell_ext_spec.rb +1 -1
- data/spec/unit/user_spec.rb +5 -1
- data/spec/unit/util/dsc/configuration_generator_spec.rb +171 -0
- data/spec/unit/util/dsc/lcm_output_parser_spec.rb +169 -0
- data/spec/unit/util/dsc/local_configuration_manager_spec.rb +139 -0
- data/spec/unit/util/path_helper_spec.rb +23 -1
- data/spec/unit/util/powershell/cmdlet_spec.rb +106 -0
- data/spec/unit/workstation_config_loader_spec.rb +1 -1
- metadata +303 -196
- checksums.yaml +0 -7
- data/distro/README +0 -2
- data/distro/arch/etc/conf.d/chef-client.conf +0 -5
- data/distro/arch/etc/conf.d/chef-expander.conf +0 -8
- data/distro/arch/etc/conf.d/chef-server-webui.conf +0 -10
- data/distro/arch/etc/conf.d/chef-server.conf +0 -10
- data/distro/arch/etc/conf.d/chef-solr.conf +0 -8
- data/distro/arch/etc/rc.d/chef-client +0 -90
- data/distro/arch/etc/rc.d/chef-expander +0 -78
- data/distro/arch/etc/rc.d/chef-server +0 -78
- data/distro/arch/etc/rc.d/chef-server-webui +0 -78
- data/distro/arch/etc/rc.d/chef-solr +0 -78
- data/distro/debian/etc/default/chef-client +0 -4
- data/distro/debian/etc/default/chef-expander +0 -8
- data/distro/debian/etc/default/chef-server +0 -9
- data/distro/debian/etc/default/chef-server-webui +0 -9
- data/distro/debian/etc/default/chef-solr +0 -8
- data/distro/debian/etc/init.d/chef-client +0 -212
- data/distro/debian/etc/init.d/chef-expander +0 -176
- data/distro/debian/etc/init.d/chef-server +0 -122
- data/distro/debian/etc/init.d/chef-server-webui +0 -123
- data/distro/debian/etc/init.d/chef-solr +0 -176
- data/distro/debian/etc/init/chef-client.conf +0 -17
- data/distro/debian/etc/init/chef-expander.conf +0 -17
- data/distro/debian/etc/init/chef-server-webui.conf +0 -17
- data/distro/debian/etc/init/chef-server.conf +0 -17
- data/distro/debian/etc/init/chef-solr.conf +0 -17
- data/distro/redhat/etc/init.d/chef-client +0 -121
- data/distro/redhat/etc/init.d/chef-expander +0 -104
- data/distro/redhat/etc/init.d/chef-server +0 -112
- data/distro/redhat/etc/init.d/chef-server-webui +0 -112
- data/distro/redhat/etc/init.d/chef-solr +0 -104
- data/distro/redhat/etc/logrotate.d/chef-client +0 -8
- data/distro/redhat/etc/logrotate.d/chef-expander +0 -8
- data/distro/redhat/etc/logrotate.d/chef-server +0 -8
- data/distro/redhat/etc/logrotate.d/chef-server-webui +0 -8
- data/distro/redhat/etc/logrotate.d/chef-solr +0 -8
- data/distro/redhat/etc/sysconfig/chef-client +0 -15
- data/distro/redhat/etc/sysconfig/chef-expander +0 -7
- data/distro/redhat/etc/sysconfig/chef-server +0 -14
- data/distro/redhat/etc/sysconfig/chef-server-webui +0 -14
- data/distro/redhat/etc/sysconfig/chef-solr +0 -8
- data/distro/windows/service_manager.rb +0 -20
- data/lib/chef/resource_platform_map.rb +0 -151
- data/spec/support/shared/matchers.rb +0 -17
- data/spec/unit/resource_platform_map_spec.rb +0 -164
@@ -31,7 +31,6 @@ class Chef::Application::Apply < Chef::Application
|
|
31
31
|
|
32
32
|
banner "Usage: chef-apply [RECIPE_FILE] [-e RECIPE_TEXT] [-s]"
|
33
33
|
|
34
|
-
|
35
34
|
option :execute,
|
36
35
|
:short => "-e RECIPE_TEXT",
|
37
36
|
:long => "--execute RECIPE_TEXT",
|
@@ -92,14 +91,17 @@ class Chef::Application::Apply < Chef::Application
|
|
92
91
|
end
|
93
92
|
|
94
93
|
def read_recipe_file(file_name)
|
95
|
-
|
96
|
-
|
97
|
-
|
94
|
+
if file_name.nil?
|
95
|
+
Chef::Application.fatal!("No recipe file was provided", 1)
|
96
|
+
else
|
97
|
+
recipe_path = File.expand_path(file_name)
|
98
|
+
unless File.exist?(recipe_path)
|
99
|
+
Chef::Application.fatal!("No file exists at #{recipe_path}", 1)
|
100
|
+
end
|
101
|
+
recipe_fh = open(recipe_path)
|
102
|
+
recipe_text = recipe_fh.read
|
103
|
+
[recipe_text, recipe_fh]
|
98
104
|
end
|
99
|
-
recipe_path = File.expand_path(recipe_path)
|
100
|
-
recipe_fh = open(recipe_path)
|
101
|
-
recipe_text = recipe_fh.read
|
102
|
-
[recipe_text, recipe_fh]
|
103
105
|
end
|
104
106
|
|
105
107
|
def get_recipe_and_run_context
|
@@ -238,8 +238,12 @@ class Chef::Application::Client < Chef::Application
|
|
238
238
|
:boolean => true
|
239
239
|
end
|
240
240
|
|
241
|
+
option :audit_mode,
|
242
|
+
:long => "--[no-]audit-mode",
|
243
|
+
:description => "If not specified, run converge and audit phase. If true, run only audit phase. If false, run only converge phase.",
|
244
|
+
:boolean => true
|
245
|
+
|
241
246
|
IMMEDIATE_RUN_SIGNAL = "1".freeze
|
242
|
-
GRACEFUL_EXIT_SIGNAL = "2".freeze
|
243
247
|
|
244
248
|
attr_reader :chef_client_json
|
245
249
|
|
@@ -268,6 +272,8 @@ class Chef::Application::Client < Chef::Application
|
|
268
272
|
Chef::Config[:splay] = nil
|
269
273
|
end
|
270
274
|
|
275
|
+
Chef::Application.fatal!(unforked_interval_error_message) if !Chef::Config[:client_fork] && Chef::Config[:interval]
|
276
|
+
|
271
277
|
if Chef::Config[:json_attribs]
|
272
278
|
config_fetcher = Chef::ConfigFetcher.new(Chef::Config[:json_attribs])
|
273
279
|
@chef_client_json = config_fetcher.fetch_json
|
@@ -295,8 +301,9 @@ class Chef::Application::Client < Chef::Application
|
|
295
301
|
Chef::Daemon.change_privilege
|
296
302
|
end
|
297
303
|
|
298
|
-
|
299
|
-
|
304
|
+
def setup_signal_handlers
|
305
|
+
super
|
306
|
+
|
300
307
|
unless Chef::Platform.windows?
|
301
308
|
SELF_PIPE.replace IO.pipe
|
302
309
|
|
@@ -304,52 +311,54 @@ class Chef::Application::Client < Chef::Application
|
|
304
311
|
Chef::Log.info("SIGUSR1 received, waking up")
|
305
312
|
SELF_PIPE[1].putc(IMMEDIATE_RUN_SIGNAL) # wakeup master process from select
|
306
313
|
end
|
307
|
-
|
308
|
-
# see CHEF-5172
|
309
|
-
if Chef::Config[:daemonize] || Chef::Config[:interval]
|
310
|
-
trap("TERM") do
|
311
|
-
Chef::Log.info("SIGTERM received, exiting gracefully")
|
312
|
-
SELF_PIPE[1].putc(GRACEFUL_EXIT_SIGNAL)
|
313
|
-
end
|
314
|
-
end
|
315
314
|
end
|
315
|
+
end
|
316
316
|
|
317
|
+
# Run the chef client, optionally daemonizing or looping at intervals.
|
318
|
+
def run_application
|
317
319
|
if Chef::Config[:version]
|
318
320
|
puts "Chef version: #{::Chef::VERSION}"
|
319
321
|
end
|
320
322
|
|
323
|
+
if !Chef::Config[:client_fork] || Chef::Config[:once]
|
324
|
+
begin
|
325
|
+
# run immediately without interval sleep, or splay
|
326
|
+
run_chef_client(Chef::Config[:specific_recipes])
|
327
|
+
rescue SystemExit
|
328
|
+
raise
|
329
|
+
rescue Exception => e
|
330
|
+
Chef::Application.fatal!("#{e.class}: #{e.message}", 1)
|
331
|
+
end
|
332
|
+
else
|
333
|
+
interval_run_chef_client
|
334
|
+
end
|
335
|
+
end
|
336
|
+
|
337
|
+
private
|
338
|
+
def interval_run_chef_client
|
321
339
|
if Chef::Config[:daemonize]
|
322
340
|
Chef::Daemon.daemonize("chef-client")
|
323
341
|
end
|
324
342
|
|
325
|
-
signal = nil
|
326
|
-
|
327
343
|
loop do
|
328
344
|
begin
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
sleep splay
|
345
|
+
@signal = test_signal
|
346
|
+
if @signal != IMMEDIATE_RUN_SIGNAL
|
347
|
+
sleep_sec = time_to_sleep
|
348
|
+
Chef::Log.debug("Sleeping for #{sleep_sec} seconds")
|
349
|
+
interval_sleep(sleep_sec)
|
335
350
|
end
|
336
351
|
|
337
|
-
signal = nil
|
352
|
+
@signal = nil
|
338
353
|
run_chef_client(Chef::Config[:specific_recipes])
|
339
354
|
|
340
|
-
if Chef::Config[:interval]
|
341
|
-
Chef::Log.debug("Sleeping for #{Chef::Config[:interval]} seconds")
|
342
|
-
signal = interval_sleep
|
343
|
-
else
|
344
|
-
Chef::Application.exit! "Exiting", 0
|
345
|
-
end
|
355
|
+
Chef::Application.exit!("Exiting", 0) if !Chef::Config[:interval]
|
346
356
|
rescue SystemExit => e
|
347
357
|
raise
|
348
358
|
rescue Exception => e
|
349
359
|
if Chef::Config[:interval]
|
350
360
|
Chef::Log.error("#{e.class}: #{e}")
|
351
|
-
Chef::Log.
|
352
|
-
signal = interval_sleep
|
361
|
+
Chef::Log.debug("#{e.class}: #{e}\n#{e.backtrace.join("\n")}")
|
353
362
|
retry
|
354
363
|
else
|
355
364
|
Chef::Application.fatal!("#{e.class}: #{e.message}", 1)
|
@@ -358,19 +367,35 @@ class Chef::Application::Client < Chef::Application
|
|
358
367
|
end
|
359
368
|
end
|
360
369
|
|
361
|
-
|
370
|
+
def test_signal
|
371
|
+
@signal = interval_sleep(0)
|
372
|
+
end
|
362
373
|
|
363
|
-
def
|
374
|
+
def time_to_sleep
|
375
|
+
duration = 0
|
376
|
+
duration += rand(Chef::Config[:splay]) if Chef::Config[:splay]
|
377
|
+
duration += Chef::Config[:interval] if Chef::Config[:interval]
|
378
|
+
duration
|
379
|
+
end
|
380
|
+
|
381
|
+
def interval_sleep(sec)
|
364
382
|
unless SELF_PIPE.empty?
|
365
|
-
client_sleep
|
383
|
+
client_sleep(sec)
|
366
384
|
else
|
367
385
|
# Windows
|
368
|
-
sleep
|
386
|
+
sleep(sec)
|
369
387
|
end
|
370
388
|
end
|
371
389
|
|
372
390
|
def client_sleep(sec)
|
373
391
|
IO.select([ SELF_PIPE[0] ], nil, nil, sec) or return
|
374
|
-
SELF_PIPE[0].getc.chr
|
392
|
+
@signal = SELF_PIPE[0].getc.chr
|
393
|
+
end
|
394
|
+
|
395
|
+
def unforked_interval_error_message
|
396
|
+
"Unforked chef-client interval runs are disabled in Chef 12." +
|
397
|
+
"\nConfiguration settings:" +
|
398
|
+
"#{"\n interval = #{Chef::Config[:interval]} seconds" if Chef::Config[:interval]}" +
|
399
|
+
"\nEnable chef-client interval runs by setting `:client_fork = true` in your config file or adding `--fork` to your command line options."
|
375
400
|
end
|
376
401
|
end
|
@@ -185,6 +185,8 @@ class Chef::Application::Solo < Chef::Application
|
|
185
185
|
Chef::Config[:interval] ||= 1800
|
186
186
|
end
|
187
187
|
|
188
|
+
Chef::Application.fatal!(unforked_interval_error_message) if !Chef::Config[:client_fork] && Chef::Config[:interval]
|
189
|
+
|
188
190
|
if Chef::Config[:recipe_url]
|
189
191
|
cookbooks_path = Array(Chef::Config[:cookbook_path]).detect{|e| e =~ /\/cookbooks\/*$/ }
|
190
192
|
recipes_path = File.expand_path(File.join(cookbooks_path, '..'))
|
@@ -209,23 +211,39 @@ class Chef::Application::Solo < Chef::Application
|
|
209
211
|
end
|
210
212
|
|
211
213
|
def run_application
|
214
|
+
if !Chef::Config[:client_fork] || Chef::Config[:once]
|
215
|
+
# Run immediately without interval sleep or splay
|
216
|
+
begin
|
217
|
+
run_chef_client(Chef::Config[:specific_recipes])
|
218
|
+
rescue SystemExit
|
219
|
+
raise
|
220
|
+
rescue Exception => e
|
221
|
+
Chef::Application.fatal!("#{e.class}: #{e.message}", 1)
|
222
|
+
end
|
223
|
+
else
|
224
|
+
interval_run_chef_client
|
225
|
+
end
|
226
|
+
end
|
227
|
+
|
228
|
+
private
|
229
|
+
def interval_run_chef_client
|
212
230
|
if Chef::Config[:daemonize]
|
213
231
|
Chef::Daemon.daemonize("chef-client")
|
214
232
|
end
|
215
233
|
|
216
234
|
loop do
|
217
235
|
begin
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
236
|
+
|
237
|
+
sleep_sec = 0
|
238
|
+
sleep_sec += rand(Chef::Config[:splay]) if Chef::Config[:splay]
|
239
|
+
sleep_sec += Chef::Config[:interval] if Chef::Config[:interval]
|
240
|
+
if sleep_sec != 0
|
241
|
+
Chef::Log.debug("Sleeping for #{sleep_sec} seconds")
|
242
|
+
sleep(sleep_sec)
|
222
243
|
end
|
223
244
|
|
224
245
|
run_chef_client
|
225
|
-
if Chef::Config[:interval]
|
226
|
-
Chef::Log.debug("Sleeping for #{Chef::Config[:interval]} seconds")
|
227
|
-
sleep Chef::Config[:interval]
|
228
|
-
else
|
246
|
+
if !Chef::Config[:interval]
|
229
247
|
Chef::Application.exit! "Exiting", 0
|
230
248
|
end
|
231
249
|
rescue SystemExit => e
|
@@ -234,8 +252,6 @@ class Chef::Application::Solo < Chef::Application
|
|
234
252
|
if Chef::Config[:interval]
|
235
253
|
Chef::Log.error("#{e.class}: #{e}")
|
236
254
|
Chef::Log.debug("#{e.class}: #{e}\n#{e.backtrace.join("\n")}")
|
237
|
-
Chef::Log.fatal("Sleeping for #{Chef::Config[:interval]} seconds before trying again")
|
238
|
-
sleep Chef::Config[:interval]
|
239
255
|
retry
|
240
256
|
else
|
241
257
|
Chef::Application.fatal!("#{e.class}: #{e.message}", 1)
|
@@ -244,8 +260,6 @@ class Chef::Application::Solo < Chef::Application
|
|
244
260
|
end
|
245
261
|
end
|
246
262
|
|
247
|
-
private
|
248
|
-
|
249
263
|
def fetch_recipe_tarball(url, path)
|
250
264
|
Chef::Log.debug("Download recipes tarball from #{url} to #{path}")
|
251
265
|
File.open(path, 'wb') do |f|
|
@@ -254,4 +268,11 @@ class Chef::Application::Solo < Chef::Application
|
|
254
268
|
end
|
255
269
|
end
|
256
270
|
end
|
271
|
+
|
272
|
+
def unforked_interval_error_message
|
273
|
+
"Unforked chef-client interval runs are disabled in Chef 12." +
|
274
|
+
"\nConfiguration settings:" +
|
275
|
+
"#{"\n interval = #{Chef::Config[:interval]} seconds" if Chef::Config[:interval]}" +
|
276
|
+
"\nEnable chef-client interval runs by setting `:client_fork = true` in your config file or adding `--fork` to your command line options."
|
277
|
+
end
|
257
278
|
end
|
@@ -253,7 +253,7 @@ class Chef
|
|
253
253
|
def self.canonicalize_json(json_text)
|
254
254
|
parsed_json = Chef::JSONCompat.parse(json_text)
|
255
255
|
sorted_json = sort_keys(parsed_json)
|
256
|
-
|
256
|
+
Chef::JSONCompat.to_json_pretty(sorted_json)
|
257
257
|
end
|
258
258
|
|
259
259
|
def self.diff_text(old_path, new_path, old_value, new_value)
|
@@ -1,5 +1,6 @@
|
|
1
1
|
require 'chef/chef_fs/file_system/rest_list_entry'
|
2
2
|
require 'chef/chef_fs/data_handler/organization_invites_data_handler'
|
3
|
+
require 'chef/json_compat'
|
3
4
|
|
4
5
|
class Chef
|
5
6
|
module ChefFS
|
@@ -34,7 +35,7 @@ class Chef
|
|
34
35
|
end
|
35
36
|
|
36
37
|
def write(contents)
|
37
|
-
desired_invites = minimize_value(
|
38
|
+
desired_invites = minimize_value(Chef::JSONCompat.parse(contents, :create_additions => false))
|
38
39
|
actual_invites = _read_json.inject({}) { |h,val| h[val['username']] = val['id']; h }
|
39
40
|
invites = actual_invites.keys
|
40
41
|
(desired_invites - invites).each do |invite|
|
@@ -1,5 +1,6 @@
|
|
1
1
|
require 'chef/chef_fs/file_system/rest_list_entry'
|
2
2
|
require 'chef/chef_fs/data_handler/organization_members_data_handler'
|
3
|
+
require 'chef/json_compat'
|
3
4
|
|
4
5
|
class Chef
|
5
6
|
module ChefFS
|
@@ -34,7 +35,7 @@ class Chef
|
|
34
35
|
end
|
35
36
|
|
36
37
|
def write(contents)
|
37
|
-
desired_members = minimize_value(
|
38
|
+
desired_members = minimize_value(Chef::JSONCompat.parse(contents, :create_additions => false))
|
38
39
|
members = minimize_value(_read_json)
|
39
40
|
(desired_members - members).each do |member|
|
40
41
|
begin
|
@@ -21,6 +21,7 @@ require 'chef/chef_fs/file_system/not_found_error'
|
|
21
21
|
require 'chef/chef_fs/file_system/operation_failed_error'
|
22
22
|
require 'chef/role'
|
23
23
|
require 'chef/node'
|
24
|
+
require 'chef/json_compat'
|
24
25
|
|
25
26
|
class Chef
|
26
27
|
module ChefFS
|
@@ -172,7 +173,7 @@ class Chef
|
|
172
173
|
|
173
174
|
def api_error_text(response)
|
174
175
|
begin
|
175
|
-
|
176
|
+
Chef::JSONCompat.parse(response.body)['error'].join("\n")
|
176
177
|
rescue
|
177
178
|
response.body
|
178
179
|
end
|
data/lib/chef/client.rb
CHANGED
@@ -36,6 +36,8 @@ require 'chef/cookbook/file_vendor'
|
|
36
36
|
require 'chef/cookbook/file_system_file_vendor'
|
37
37
|
require 'chef/cookbook/remote_file_vendor'
|
38
38
|
require 'chef/event_dispatch/dispatcher'
|
39
|
+
require 'chef/event_loggers/base'
|
40
|
+
require 'chef/event_loggers/windows_eventlog'
|
39
41
|
require 'chef/formatters/base'
|
40
42
|
require 'chef/formatters/doc'
|
41
43
|
require 'chef/formatters/minimal'
|
@@ -151,7 +153,7 @@ class Chef
|
|
151
153
|
@runner = nil
|
152
154
|
@ohai = Ohai::System.new
|
153
155
|
|
154
|
-
event_handlers = configure_formatters
|
156
|
+
event_handlers = configure_formatters + configure_event_loggers
|
155
157
|
event_handlers += Array(Chef::Config[:event_handlers])
|
156
158
|
|
157
159
|
@events = EventDispatch::Dispatcher.new(*event_handlers)
|
@@ -191,52 +193,20 @@ class Chef
|
|
191
193
|
end
|
192
194
|
end
|
193
195
|
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
# running on is not windows before forking.
|
205
|
-
if(Chef::Config[:client_fork] && Process.respond_to?(:fork) && !Chef::Platform.windows?)
|
206
|
-
Chef::Log.info "Forking chef instance to converge..."
|
207
|
-
pid = fork do
|
208
|
-
[:INT, :TERM].each {|s| trap(s, "EXIT") }
|
209
|
-
client_solo = Chef::Config[:solo] ? "chef-solo" : "chef-client"
|
210
|
-
$0 = "#{client_solo} worker: ppid=#{Process.ppid};start=#{Time.new.strftime("%R:%S")};"
|
211
|
-
begin
|
212
|
-
Chef::Log.debug "Forked instance now converging"
|
213
|
-
do_run
|
214
|
-
rescue Exception => e
|
215
|
-
Chef::Log.error(e.to_s)
|
216
|
-
exit 1
|
196
|
+
def configure_event_loggers
|
197
|
+
if Chef::Config.disable_event_logger
|
198
|
+
[]
|
199
|
+
else
|
200
|
+
Chef::Config.event_loggers.map do |evt_logger|
|
201
|
+
case evt_logger
|
202
|
+
when Symbol
|
203
|
+
Chef::EventLoggers.new(evt_logger)
|
204
|
+
when Class
|
205
|
+
evt_logger.new
|
217
206
|
else
|
218
|
-
exit 0
|
219
207
|
end
|
220
208
|
end
|
221
|
-
Chef::Log.debug "Fork successful. Waiting for new chef pid: #{pid}"
|
222
|
-
result = Process.waitpid2(pid)
|
223
|
-
handle_child_exit(result)
|
224
|
-
Chef::Log.debug "Forked instance successfully reaped (pid: #{pid})"
|
225
|
-
true
|
226
|
-
else
|
227
|
-
do_run
|
228
|
-
end
|
229
|
-
end
|
230
|
-
|
231
|
-
def handle_child_exit(pid_and_status)
|
232
|
-
status = pid_and_status[1]
|
233
|
-
return true if status.success?
|
234
|
-
message = if status.signaled?
|
235
|
-
"Chef run process terminated by signal #{status.termsig} (#{Signal.list.invert[status.termsig]})"
|
236
|
-
else
|
237
|
-
"Chef run process exited unsuccessfully (exit code #{status.exitstatus})"
|
238
209
|
end
|
239
|
-
raise Exceptions::ChildConvergeError, message
|
240
210
|
end
|
241
211
|
|
242
212
|
# Instantiates a Chef::Node object, possibly loading the node's prior state
|
@@ -330,7 +300,7 @@ class Chef
|
|
330
300
|
rescue Exception => e
|
331
301
|
# TODO: munge exception so a semantic failure message can be given to the
|
332
302
|
# user
|
333
|
-
@events.registration_failed(
|
303
|
+
@events.registration_failed(client_name, e, config)
|
334
304
|
raise
|
335
305
|
end
|
336
306
|
|
@@ -383,8 +353,6 @@ class Chef
|
|
383
353
|
end
|
384
354
|
end
|
385
355
|
|
386
|
-
private
|
387
|
-
|
388
356
|
# Do a full run for this Chef::Client. Calls:
|
389
357
|
#
|
390
358
|
# * run_ohai - Collect information about the system
|
@@ -395,7 +363,7 @@ class Chef
|
|
395
363
|
#
|
396
364
|
# === Returns
|
397
365
|
# true:: Always returns true.
|
398
|
-
def
|
366
|
+
def run
|
399
367
|
runlock = RunLock.new(Chef::Config.lockfile)
|
400
368
|
runlock.acquire
|
401
369
|
# don't add code that may fail before entering this section to be sure to release lock
|
@@ -428,7 +396,7 @@ class Chef
|
|
428
396
|
|
429
397
|
run_context = setup_run_context
|
430
398
|
|
431
|
-
catch
|
399
|
+
catch(:end_client_run_early) do
|
432
400
|
converge(run_context)
|
433
401
|
end
|
434
402
|
|
@@ -466,6 +434,8 @@ class Chef
|
|
466
434
|
true
|
467
435
|
end
|
468
436
|
|
437
|
+
private
|
438
|
+
|
469
439
|
def empty_directory?(path)
|
470
440
|
!File.exists?(path) || (Dir.entries(path).size <= 2)
|
471
441
|
end
|