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
@@ -0,0 +1,50 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
require 'mkmf'
|
4
|
+
|
5
|
+
desc "Building event log dll"
|
6
|
+
|
7
|
+
def ensure_present(commands)
|
8
|
+
commands.each do |c|
|
9
|
+
unless find_executable c
|
10
|
+
warn "Could not find #{c}. Windows Event Logging will not correctly function."
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
|
16
|
+
EVT_MC_FILE = 'chef-log.man'
|
17
|
+
EVT_RC_FILE = 'chef-log.rc'
|
18
|
+
EVT_RESOURCE_OBJECT = 'resource.o'
|
19
|
+
EVT_SHARED_OBJECT = 'chef-log.dll'
|
20
|
+
MC = 'windmc'
|
21
|
+
RC = 'windres'
|
22
|
+
CC = 'gcc'
|
23
|
+
|
24
|
+
ensure_present [MC, RC, CC]
|
25
|
+
|
26
|
+
task :build => [EVT_RESOURCE_OBJECT, EVT_SHARED_OBJECT]
|
27
|
+
task :default => [:build, :register]
|
28
|
+
|
29
|
+
file EVT_RC_FILE=> EVT_MC_FILE do
|
30
|
+
sh "#{MC} #{EVT_MC_FILE}"
|
31
|
+
end
|
32
|
+
|
33
|
+
file EVT_RESOURCE_OBJECT => EVT_RC_FILE do
|
34
|
+
sh "#{RC} -i #{EVT_RC_FILE} -o #{EVT_RESOURCE_OBJECT}"
|
35
|
+
end
|
36
|
+
|
37
|
+
file EVT_SHARED_OBJECT => EVT_RESOURCE_OBJECT do
|
38
|
+
sh "#{CC} -o #{EVT_SHARED_OBJECT} -shared #{EVT_RESOURCE_OBJECT}"
|
39
|
+
end
|
40
|
+
|
41
|
+
task :register => EVT_SHARED_OBJECT do
|
42
|
+
require 'win32/eventlog'
|
43
|
+
dll_file = File.expand_path(EVT_SHARED_OBJECT)
|
44
|
+
Win32::EventLog.add_event_source(
|
45
|
+
:source => "Application",
|
46
|
+
:key_name => "Chef",
|
47
|
+
:event_message_file => dll_file,
|
48
|
+
:category_message_file => dll_file
|
49
|
+
)
|
50
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
MessageId=10000
|
2
|
+
SymbolicName=RUN_START
|
3
|
+
Language=English
|
4
|
+
Starting Chef Client run v%1
|
5
|
+
.
|
6
|
+
|
7
|
+
MessageId=10001
|
8
|
+
SymbolicName=RUN_STARTED
|
9
|
+
Language=English
|
10
|
+
Started Chef Client run %1
|
11
|
+
.
|
12
|
+
|
13
|
+
MessageId=10002
|
14
|
+
SymbolicName=RUN_COMPLETED
|
15
|
+
Language=English
|
16
|
+
Completed Chef Client run %1 in %2 seconds
|
17
|
+
.
|
18
|
+
|
19
|
+
MessageId=10003
|
20
|
+
SymbolicName=RUN_FAILED
|
21
|
+
Language=English
|
22
|
+
Failed Chef Client run %1 in %2 seconds.%n
|
23
|
+
Exception type: %3%n
|
24
|
+
Exception message: %4%n
|
25
|
+
Exception backtrace: %5%n
|
26
|
+
.
|
data/lib/chef/application.rb
CHANGED
@@ -28,300 +28,372 @@ require 'mixlib/cli'
|
|
28
28
|
require 'tmpdir'
|
29
29
|
require 'rbconfig'
|
30
30
|
|
31
|
-
class Chef
|
32
|
-
|
31
|
+
class Chef
|
32
|
+
class Application
|
33
|
+
include Mixlib::CLI
|
33
34
|
|
34
|
-
|
35
|
-
|
35
|
+
def initialize
|
36
|
+
super
|
36
37
|
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
# Always switch to a readable directory. Keeps subsequent Dir.chdir() {}
|
41
|
-
# from failing due to permissions when launched as a less privileged user.
|
42
|
-
end
|
38
|
+
@chef_client = nil
|
39
|
+
@chef_client_json = nil
|
43
40
|
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
configure_logging
|
48
|
-
configure_proxy_environment_variables
|
49
|
-
configure_encoding
|
50
|
-
end
|
41
|
+
# Always switch to a readable directory. Keeps subsequent Dir.chdir() {}
|
42
|
+
# from failing due to permissions when launched as a less privileged user.
|
43
|
+
end
|
51
44
|
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
45
|
+
# Reconfigure the application. You'll want to override and super this method.
|
46
|
+
def reconfigure
|
47
|
+
configure_chef
|
48
|
+
configure_logging
|
49
|
+
configure_proxy_environment_variables
|
50
|
+
configure_encoding
|
51
|
+
end
|
59
52
|
|
60
|
-
|
61
|
-
|
62
|
-
|
53
|
+
# Get this party started
|
54
|
+
def run
|
55
|
+
setup_signal_handlers
|
56
|
+
reconfigure
|
57
|
+
setup_application
|
58
|
+
run_application
|
63
59
|
end
|
64
60
|
|
65
|
-
|
66
|
-
trap("
|
67
|
-
Chef::
|
61
|
+
def setup_signal_handlers
|
62
|
+
trap("INT") do
|
63
|
+
Chef::Application.fatal!("SIGINT received, stopping", 2)
|
64
|
+
end
|
65
|
+
|
66
|
+
trap("TERM") do
|
67
|
+
Chef::Application.fatal!("SIGTERM received, stopping", 3)
|
68
68
|
end
|
69
69
|
|
70
|
-
|
71
|
-
|
72
|
-
|
70
|
+
unless Chef::Platform.windows?
|
71
|
+
trap("QUIT") do
|
72
|
+
Chef::Log.info("SIGQUIT received, call stack:\n " + caller.join("\n "))
|
73
|
+
end
|
74
|
+
|
75
|
+
trap("HUP") do
|
76
|
+
Chef::Log.info("SIGHUP received, reconfiguring")
|
77
|
+
reconfigure
|
78
|
+
end
|
73
79
|
end
|
74
80
|
end
|
75
|
-
end
|
76
81
|
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
+
# Parse configuration (options and config file)
|
83
|
+
def configure_chef
|
84
|
+
parse_options
|
85
|
+
load_config_file
|
86
|
+
end
|
82
87
|
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
88
|
+
# Parse the config file
|
89
|
+
def load_config_file
|
90
|
+
config_fetcher = Chef::ConfigFetcher.new(config[:config_file])
|
91
|
+
if config[:config_file].nil?
|
92
|
+
Chef::Log.warn("No config file found or specified on command line, using command line options.")
|
93
|
+
elsif config_fetcher.config_missing?
|
94
|
+
pp config_missing: true
|
95
|
+
Chef::Log.warn("*****************************************")
|
96
|
+
Chef::Log.warn("Did not find config file: #{config[:config_file]}, using command line options.")
|
97
|
+
Chef::Log.warn("*****************************************")
|
98
|
+
else
|
99
|
+
config_content = config_fetcher.read_config
|
100
|
+
apply_config(config_content, config[:config_file])
|
101
|
+
end
|
102
|
+
Chef::Config.merge!(config)
|
96
103
|
end
|
97
|
-
Chef::Config.merge!(config)
|
98
|
-
end
|
99
104
|
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
105
|
+
# Initialize and configure the logger.
|
106
|
+
# === Loggers and Formatters
|
107
|
+
# In Chef 10.x and previous, the Logger was the primary/only way that Chef
|
108
|
+
# communicated information to the user. In Chef 10.14, a new system, "output
|
109
|
+
# formatters" was added, and in Chef 11.0+ it is the default when running
|
110
|
+
# chef in a console (detected by `STDOUT.tty?`). Because output formatters
|
111
|
+
# are more complex than the logger system and users have less experience with
|
112
|
+
# them, the config option `force_logger` is provided to restore the Chef 10.x
|
113
|
+
# behavior.
|
114
|
+
#
|
115
|
+
# Conversely, for users who want formatter output even when chef is running
|
116
|
+
# unattended, the `force_formatter` option is provided.
|
117
|
+
#
|
118
|
+
# === Auto Log Level
|
119
|
+
# When `log_level` is set to `:auto` (default), the log level will be `:warn`
|
120
|
+
# when the primary output mode is an output formatter (see
|
121
|
+
# +using_output_formatter?+) and `:info` otherwise.
|
122
|
+
#
|
123
|
+
# === Automatic STDOUT Logging
|
124
|
+
# When `force_logger` is configured (e.g., Chef 10 mode), a second logger
|
125
|
+
# with output on STDOUT is added when running in a console (STDOUT is a tty)
|
126
|
+
# and the configured log_location isn't STDOUT. This accounts for the case
|
127
|
+
# that a user has configured a log_location in client.rb, but is running
|
128
|
+
# chef-client by hand to troubleshoot a problem.
|
129
|
+
def configure_logging
|
130
|
+
Chef::Log.init(MonoLogger.new(Chef::Config[:log_location]))
|
131
|
+
if want_additional_logger?
|
132
|
+
configure_stdout_logger
|
133
|
+
end
|
134
|
+
Chef::Log.level = resolve_log_level
|
135
|
+
rescue StandardError => error
|
136
|
+
Chef::Log.fatal("Failed to open or create log file at #{Chef::Config[:log_location]}: #{error.class} (#{error.message})")
|
137
|
+
Chef::Application.fatal!("Aborting due to invalid 'log_location' configuration", 2)
|
128
138
|
end
|
129
|
-
Chef::Log.level = resolve_log_level
|
130
|
-
rescue StandardError => error
|
131
|
-
Chef::Log.fatal("Failed to open or create log file at #{Chef::Config[:log_location]}: #{error.class} (#{error.message})")
|
132
|
-
Chef::Application.fatal!("Aborting due to invalid 'log_location' configuration", 2)
|
133
|
-
end
|
134
139
|
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
+
def configure_stdout_logger
|
141
|
+
stdout_logger = MonoLogger.new(STDOUT)
|
142
|
+
stdout_logger.formatter = Chef::Log.logger.formatter
|
143
|
+
Chef::Log.loggers << stdout_logger
|
144
|
+
end
|
140
145
|
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
+
# Based on config and whether or not STDOUT is a tty, should we setup a
|
147
|
+
# secondary logger for stdout?
|
148
|
+
def want_additional_logger?
|
149
|
+
( Chef::Config[:log_location] != STDOUT ) && STDOUT.tty? && (!Chef::Config[:daemonize]) && (Chef::Config[:force_logger])
|
150
|
+
end
|
146
151
|
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
+
# Use of output formatters is assumed if `force_formatter` is set or if
|
153
|
+
# `force_logger` is not set and STDOUT is to a console (tty)
|
154
|
+
def using_output_formatter?
|
155
|
+
Chef::Config[:force_formatter] || (!Chef::Config[:force_logger] && STDOUT.tty?)
|
156
|
+
end
|
152
157
|
|
153
|
-
|
154
|
-
|
155
|
-
|
158
|
+
def auto_log_level?
|
159
|
+
Chef::Config[:log_level] == :auto
|
160
|
+
end
|
156
161
|
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
162
|
+
# if log_level is `:auto`, convert it to :warn (when using output formatter)
|
163
|
+
# or :info (no output formatter). See also +using_output_formatter?+
|
164
|
+
def resolve_log_level
|
165
|
+
if auto_log_level?
|
166
|
+
if using_output_formatter?
|
167
|
+
:warn
|
168
|
+
else
|
169
|
+
:info
|
170
|
+
end
|
163
171
|
else
|
164
|
-
:
|
172
|
+
Chef::Config[:log_level]
|
165
173
|
end
|
166
|
-
else
|
167
|
-
Chef::Config[:log_level]
|
168
174
|
end
|
169
|
-
end
|
170
175
|
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
176
|
+
# Configure and set any proxy environment variables according to the config.
|
177
|
+
def configure_proxy_environment_variables
|
178
|
+
configure_http_proxy
|
179
|
+
configure_https_proxy
|
180
|
+
configure_ftp_proxy
|
181
|
+
configure_no_proxy
|
182
|
+
end
|
178
183
|
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
184
|
+
# Sets the default external encoding to UTF-8 (users can change this, but they shouldn't)
|
185
|
+
def configure_encoding
|
186
|
+
Encoding.default_external = Chef::Config[:ruby_encoding]
|
187
|
+
end
|
183
188
|
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
189
|
+
# Called prior to starting the application, by the run method
|
190
|
+
def setup_application
|
191
|
+
raise Chef::Exceptions::Application, "#{self.to_s}: you must override setup_application"
|
192
|
+
end
|
188
193
|
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
194
|
+
# Actually run the application
|
195
|
+
def run_application
|
196
|
+
raise Chef::Exceptions::Application, "#{self.to_s}: you must override run_application"
|
197
|
+
end
|
193
198
|
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
199
|
+
# Initializes Chef::Client instance and runs it
|
200
|
+
def run_chef_client(specific_recipes = [])
|
201
|
+
Chef::LocalMode.with_server_connectivity do
|
202
|
+
override_runlist = config[:override_runlist]
|
203
|
+
if specific_recipes.size > 0
|
204
|
+
override_runlist ||= []
|
205
|
+
end
|
206
|
+
@chef_client = Chef::Client.new(
|
207
|
+
@chef_client_json,
|
208
|
+
:override_runlist => config[:override_runlist],
|
209
|
+
:specific_recipes => specific_recipes,
|
210
|
+
:runlist => config[:runlist]
|
211
|
+
)
|
212
|
+
@chef_client_json = nil
|
213
|
+
|
214
|
+
if can_fork?
|
215
|
+
fork_chef_client # allowed to run client in forked process
|
216
|
+
else
|
217
|
+
# Unforked interval runs are disabled, so this runs chef-client
|
218
|
+
# once and then exits. If TERM signal is received, will "ignore"
|
219
|
+
# the signal to finish converge.
|
220
|
+
run_with_graceful_exit_option
|
221
|
+
end
|
222
|
+
@chef_client = nil
|
200
223
|
end
|
201
|
-
|
202
|
-
@chef_client_json,
|
203
|
-
:override_runlist => config[:override_runlist],
|
204
|
-
:specific_recipes => specific_recipes,
|
205
|
-
:runlist => config[:runlist]
|
206
|
-
)
|
207
|
-
@chef_client_json = nil
|
224
|
+
end
|
208
225
|
|
209
|
-
|
210
|
-
|
226
|
+
private
|
227
|
+
def can_fork?
|
228
|
+
# win32-process gem exposes some form of :fork for Process
|
229
|
+
# class. So we are seperately ensuring that the platform we're
|
230
|
+
# running on is not windows before forking.
|
231
|
+
Chef::Config[:client_fork] && Process.respond_to?(:fork) && !Chef::Platform.windows?
|
211
232
|
end
|
212
|
-
end
|
213
233
|
|
214
|
-
|
234
|
+
# Run chef-client once and then exit. If TERM signal is received, ignores the
|
235
|
+
# signal to finish the converge and exists.
|
236
|
+
def run_with_graceful_exit_option
|
237
|
+
# Override the TERM signal.
|
238
|
+
trap('TERM') do
|
239
|
+
Chef::Log.debug("SIGTERM received during converge," +
|
240
|
+
" finishing converge to exit normally (send SIGINT to terminate immediately)")
|
241
|
+
end
|
215
242
|
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
243
|
+
@chef_client.run
|
244
|
+
true
|
245
|
+
end
|
246
|
+
|
247
|
+
def fork_chef_client
|
248
|
+
Chef::Log.info "Forking chef instance to converge..."
|
249
|
+
pid = fork do
|
250
|
+
# Want to allow forked processes to finish converging when
|
251
|
+
# TERM singal is received (exit gracefully)
|
252
|
+
trap('TERM') do
|
253
|
+
Chef::Log.debug("SIGTERM received during converge," +
|
254
|
+
" finishing converge to exit normally (send SIGINT to terminate immediately)")
|
255
|
+
end
|
224
256
|
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
257
|
+
client_solo = Chef::Config[:solo] ? "chef-solo" : "chef-client"
|
258
|
+
$0 = "#{client_solo} worker: ppid=#{Process.ppid};start=#{Time.new.strftime("%R:%S")};"
|
259
|
+
begin
|
260
|
+
Chef::Log.debug "Forked instance now converging"
|
261
|
+
@chef_client.run
|
262
|
+
rescue Exception => e
|
263
|
+
Chef::Log.error(e.to_s)
|
264
|
+
exit 1
|
265
|
+
else
|
266
|
+
exit 0
|
267
|
+
end
|
268
|
+
end
|
269
|
+
Chef::Log.debug "Fork successful. Waiting for new chef pid: #{pid}"
|
270
|
+
result = Process.waitpid2(pid)
|
271
|
+
handle_child_exit(result)
|
272
|
+
Chef::Log.debug "Forked instance successfully reaped (pid: #{pid})"
|
273
|
+
true
|
232
274
|
end
|
233
|
-
end
|
234
275
|
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
276
|
+
def handle_child_exit(pid_and_status)
|
277
|
+
status = pid_and_status[1]
|
278
|
+
return true if status.success?
|
279
|
+
message = if status.signaled?
|
280
|
+
"Chef run process terminated by signal #{status.termsig} (#{Signal.list.invert[status.termsig]})"
|
281
|
+
else
|
282
|
+
"Chef run process exited unsuccessfully (exit code #{status.exitstatus})"
|
283
|
+
end
|
284
|
+
raise Exceptions::ChildConvergeError, message
|
242
285
|
end
|
243
|
-
end
|
244
286
|
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
287
|
+
def apply_config(config_content, config_file_path)
|
288
|
+
Chef::Config.from_string(config_content, config_file_path)
|
289
|
+
rescue Exception => error
|
290
|
+
Chef::Log.fatal("Configuration error #{error.class}: #{error.message}")
|
291
|
+
filtered_trace = error.backtrace.grep(/#{Regexp.escape(config_file_path)}/)
|
292
|
+
filtered_trace.each {|line| Chef::Log.fatal(" " + line )}
|
293
|
+
Chef::Application.fatal!("Aborting due to error in '#{config_file_path}'", 2)
|
252
294
|
end
|
253
|
-
end
|
254
295
|
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
296
|
+
# Set ENV['http_proxy']
|
297
|
+
def configure_http_proxy
|
298
|
+
if http_proxy = Chef::Config[:http_proxy]
|
299
|
+
http_proxy_string = configure_proxy("http", http_proxy,
|
300
|
+
Chef::Config[:http_proxy_user], Chef::Config[:http_proxy_pass])
|
301
|
+
env['http_proxy'] = http_proxy_string unless env['http_proxy']
|
302
|
+
env['HTTP_PROXY'] = http_proxy_string unless env['HTTP_PROXY']
|
303
|
+
end
|
260
304
|
end
|
261
|
-
end
|
262
305
|
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
# user = username
|
271
|
-
# pass = password
|
272
|
-
def configure_proxy(scheme, path, user, pass)
|
273
|
-
begin
|
274
|
-
path = "#{scheme}://#{path}" unless path.include?('://')
|
275
|
-
# URI.split returns the following parts:
|
276
|
-
# [scheme, userinfo, host, port, registry, path, opaque, query, fragment]
|
277
|
-
parts = URI.split(URI.encode(path))
|
278
|
-
# URI::Generic.build requires an integer for the port, but URI::split gives
|
279
|
-
# returns a string for the port.
|
280
|
-
parts[3] = parts[3].to_i if parts[3]
|
281
|
-
if user
|
282
|
-
userinfo = URI.encode(URI.encode(user), '@:')
|
283
|
-
if pass
|
284
|
-
userinfo << ":#{URI.encode(URI.encode(pass), '@:')}"
|
285
|
-
end
|
286
|
-
parts[1] = userinfo
|
306
|
+
# Set ENV['https_proxy']
|
307
|
+
def configure_https_proxy
|
308
|
+
if https_proxy = Chef::Config[:https_proxy]
|
309
|
+
https_proxy_string = configure_proxy("https", https_proxy,
|
310
|
+
Chef::Config[:https_proxy_user], Chef::Config[:https_proxy_pass])
|
311
|
+
env['https_proxy'] = https_proxy_string unless env['https_proxy']
|
312
|
+
env['HTTPS_PROXY'] = https_proxy_string unless env['HTTPS_PROXY']
|
287
313
|
end
|
314
|
+
end
|
288
315
|
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
316
|
+
# Set ENV['ftp_proxy']
|
317
|
+
def configure_ftp_proxy
|
318
|
+
if ftp_proxy = Chef::Config[:ftp_proxy]
|
319
|
+
ftp_proxy_string = configure_proxy("ftp", ftp_proxy,
|
320
|
+
Chef::Config[:ftp_proxy_user], Chef::Config[:ftp_proxy_pass])
|
321
|
+
env['ftp_proxy'] = ftp_proxy_string unless env['ftp_proxy']
|
322
|
+
env['FTP_PROXY'] = ftp_proxy_string unless env['FTP_PROXY']
|
323
|
+
end
|
295
324
|
end
|
296
|
-
end
|
297
325
|
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
326
|
+
# Set ENV['no_proxy']
|
327
|
+
def configure_no_proxy
|
328
|
+
if Chef::Config[:no_proxy]
|
329
|
+
env['no_proxy'] = Chef::Config[:no_proxy] unless env['no_proxy']
|
330
|
+
env['NO_PROXY'] = Chef::Config[:no_proxy] unless env['NO_PROXY']
|
331
|
+
end
|
332
|
+
end
|
302
333
|
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
334
|
+
# Builds a proxy uri. Examples:
|
335
|
+
# http://username:password@hostname:port
|
336
|
+
# https://username@hostname:port
|
337
|
+
# ftp://hostname:port
|
338
|
+
# when
|
339
|
+
# scheme = "http", "https", or "ftp"
|
340
|
+
# hostport = hostname:port
|
341
|
+
# user = username
|
342
|
+
# pass = password
|
343
|
+
def configure_proxy(scheme, path, user, pass)
|
344
|
+
begin
|
345
|
+
path = "#{scheme}://#{path}" unless path.include?('://')
|
346
|
+
# URI.split returns the following parts:
|
347
|
+
# [scheme, userinfo, host, port, registry, path, opaque, query, fragment]
|
348
|
+
parts = URI.split(URI.encode(path))
|
349
|
+
# URI::Generic.build requires an integer for the port, but URI::split gives
|
350
|
+
# returns a string for the port.
|
351
|
+
parts[3] = parts[3].to_i if parts[3]
|
352
|
+
if user
|
353
|
+
userinfo = URI.encode(URI.encode(user), '@:')
|
354
|
+
if pass
|
355
|
+
userinfo << ":#{URI.encode(URI.encode(pass), '@:')}"
|
356
|
+
end
|
357
|
+
parts[1] = userinfo
|
358
|
+
end
|
308
359
|
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
360
|
+
return URI::Generic.build(parts).to_s
|
361
|
+
rescue URI::Error => e
|
362
|
+
# URI::Error messages generally include the offending string. Including a message
|
363
|
+
# for which proxy config item has the issue should help deduce the issue when
|
364
|
+
# the URI::Error message is vague.
|
365
|
+
raise Chef::Exceptions::BadProxyURI, "Cannot configure #{scheme} proxy. Does not comply with URI scheme. #{e.message}"
|
366
|
+
end
|
313
367
|
end
|
314
368
|
|
315
|
-
#
|
316
|
-
def
|
317
|
-
|
318
|
-
Process.exit err
|
369
|
+
# This is a hook for testing
|
370
|
+
def env
|
371
|
+
ENV
|
319
372
|
end
|
320
373
|
|
321
|
-
|
322
|
-
|
323
|
-
|
374
|
+
class << self
|
375
|
+
def debug_stacktrace(e)
|
376
|
+
message = "#{e.class}: #{e}\n#{e.backtrace.join("\n")}"
|
377
|
+
chef_stacktrace_out = "Generated at #{Time.now.to_s}\n"
|
378
|
+
chef_stacktrace_out += message
|
379
|
+
|
380
|
+
Chef::FileCache.store("chef-stacktrace.out", chef_stacktrace_out)
|
381
|
+
Chef::Log.fatal("Stacktrace dumped to #{Chef::FileCache.load("chef-stacktrace.out", false)}")
|
382
|
+
Chef::Log.debug(message)
|
383
|
+
true
|
384
|
+
end
|
385
|
+
|
386
|
+
# Log a fatal error message to both STDERR and the Logger, exit the application
|
387
|
+
def fatal!(msg, err = -1)
|
388
|
+
Chef::Log.fatal(msg)
|
389
|
+
Process.exit err
|
390
|
+
end
|
391
|
+
|
392
|
+
def exit!(msg, err = -1)
|
393
|
+
Chef::Log.debug(msg)
|
394
|
+
Process.exit err
|
395
|
+
end
|
324
396
|
end
|
325
|
-
end
|
326
397
|
|
398
|
+
end
|
327
399
|
end
|