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
@@ -1,6 +1,6 @@
|
|
1
1
|
.\" Man page generated from reStructuredText.
|
2
2
|
.
|
3
|
-
.TH "KNIFE-STATUS" "1" "Chef 11.
|
3
|
+
.TH "KNIFE-STATUS" "1" "Chef 11.16" "" "knife status"
|
4
4
|
.SH NAME
|
5
5
|
knife-status \- The man page for the knife status subcommand.
|
6
6
|
.
|
@@ -65,7 +65,7 @@ Use to view colored output.
|
|
65
65
|
Use to prevent the $EDITOR from being opened and to accept data as\-is.
|
66
66
|
.TP
|
67
67
|
.B \fB\-\-defaults\fP
|
68
|
-
Use to have
|
68
|
+
Use to have knife use the default value instead of asking a user to provide one.
|
69
69
|
.TP
|
70
70
|
.B \fB\-e EDITOR\fP, \fB\-\-editor EDITOR\fP
|
71
71
|
The $EDITOR that is used for all interactive commands.
|
@@ -83,7 +83,7 @@ Shows help for the command.
|
|
83
83
|
Use to hide nodes on which a chef\-client run has occurred within the previous hour.
|
84
84
|
.TP
|
85
85
|
.B \fB\-k KEY\fP, \fB\-\-key KEY\fP
|
86
|
-
The private key that
|
86
|
+
The private key that knife will use to sign requests made by the API client to the Chef server\&.
|
87
87
|
.TP
|
88
88
|
.B \fB\-\-print\-after\fP
|
89
89
|
Use to show data after a destructive operation.
|
@@ -101,7 +101,7 @@ Use to sort a list by last run time, descending.
|
|
101
101
|
The URL for the Chef server\&.
|
102
102
|
.TP
|
103
103
|
.B \fB\-u USER\fP, \fB\-\-user USER\fP
|
104
|
-
The user name used by
|
104
|
+
The user name used by knife to sign requests made by the API client to the Chef server\&. Authentication will fail if the user name does not match the private key.
|
105
105
|
.TP
|
106
106
|
.B \fB\-v\fP, \fB\-\-version\fP
|
107
107
|
The version of the chef\-client\&.
|
@@ -110,7 +110,7 @@ The version of the chef\-client\&.
|
|
110
110
|
Set for more verbose outputs. Use \fB\-VV\fP for maximum verbosity.
|
111
111
|
.TP
|
112
112
|
.B \fB\-y\fP, \fB\-\-yes\fP
|
113
|
-
Use to respond to all confirmation prompts with "Yes".
|
113
|
+
Use to respond to all confirmation prompts with "Yes". knife will not ask for confirmation.
|
114
114
|
.TP
|
115
115
|
.B \fB\-z\fP, \fB\-\-local\-mode\fP
|
116
116
|
Use to run the chef\-client in local mode. This allows all commands that work against the Chef server to also work against the local chef\-repo\&.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
.\" Man page generated from reStructuredText.
|
2
2
|
.
|
3
|
-
.TH "KNIFE-TAG" "1" "Chef 11.
|
3
|
+
.TH "KNIFE-TAG" "1" "Chef 11.16" "" "knife tag"
|
4
4
|
.SH NAME
|
5
5
|
knife-tag \- The man page for the knife tag subcommand.
|
6
6
|
.
|
@@ -31,7 +31,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
|
|
31
31
|
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
|
32
32
|
..
|
33
33
|
.sp
|
34
|
-
A tag is a custom description that is applied to a node. A tag, once applied, can be helpful when managing nodes using
|
34
|
+
A tag is a custom description that is applied to a node. A tag, once applied, can be helpful when managing nodes using knife or when building recipes by providing alternate methods of grouping similar types of information.
|
35
35
|
.sp
|
36
36
|
The \fBknife tag\fP subcommand is used to apply tags to nodes on a Chef server\&.
|
37
37
|
.SH COMMON OPTIONS
|
@@ -49,7 +49,7 @@ The configuration file to use.
|
|
49
49
|
Use to prevent the $EDITOR from being opened and to accept data as\-is.
|
50
50
|
.TP
|
51
51
|
.B \fB\-\-defaults\fP
|
52
|
-
Use to have
|
52
|
+
Use to have knife use the default value instead of asking a user to provide one.
|
53
53
|
.TP
|
54
54
|
.B \fB\-e EDITOR\fP, \fB\-\-editor EDITOR\fP
|
55
55
|
The $EDITOR that is used for all interactive commands.
|
@@ -64,7 +64,7 @@ The output format: \fBsummary\fP (default), \fBtext\fP, \fBjson\fP, \fByaml\fP,
|
|
64
64
|
Shows help for the command.
|
65
65
|
.TP
|
66
66
|
.B \fB\-k KEY\fP, \fB\-\-key KEY\fP
|
67
|
-
The private key that
|
67
|
+
The private key that knife will use to sign requests made by the API client to the Chef server\&.
|
68
68
|
.TP
|
69
69
|
.B \fB\-\-[no\-]color\fP
|
70
70
|
Use to view colored output.
|
@@ -76,7 +76,7 @@ Use to show data after a destructive operation.
|
|
76
76
|
The URL for the Chef server\&.
|
77
77
|
.TP
|
78
78
|
.B \fB\-u USER\fP, \fB\-\-user USER\fP
|
79
|
-
The user name used by
|
79
|
+
The user name used by knife to sign requests made by the API client to the Chef server\&. Authentication will fail if the user name does not match the private key.
|
80
80
|
.TP
|
81
81
|
.B \fB\-V\fP, \fB\-\-verbose\fP
|
82
82
|
Set for more verbose outputs. Use \fB\-VV\fP for maximum verbosity.
|
@@ -85,7 +85,7 @@ Set for more verbose outputs. Use \fB\-VV\fP for maximum verbosity.
|
|
85
85
|
The version of the chef\-client\&.
|
86
86
|
.TP
|
87
87
|
.B \fB\-y\fP, \fB\-\-yes\fP
|
88
|
-
Use to respond to all confirmation prompts with "Yes".
|
88
|
+
Use to respond to all confirmation prompts with "Yes". knife will not ask for confirmation.
|
89
89
|
.TP
|
90
90
|
.B \fB\-z\fP, \fB\-\-local\-mode\fP
|
91
91
|
Use to run the chef\-client in local mode. This allows all commands that work against the Chef server to also work against the local chef\-repo\&.
|
@@ -114,7 +114,7 @@ This command does not have any specific options.
|
|
114
114
|
.sp
|
115
115
|
\fBExamples\fP
|
116
116
|
.sp
|
117
|
-
To create tags named
|
117
|
+
To create tags named \fBseattle\fP, \fBportland\fP, and \fBvancouver\fP, enter:
|
118
118
|
.INDENT 0.0
|
119
119
|
.INDENT 3.5
|
120
120
|
.sp
|
@@ -149,7 +149,7 @@ This command does not have any specific options.
|
|
149
149
|
.sp
|
150
150
|
\fBExamples\fP
|
151
151
|
.sp
|
152
|
-
To delete tags named
|
152
|
+
To delete tags named \fBdenver\fP and \fBphoenix\fP, enter:
|
153
153
|
.INDENT 0.0
|
154
154
|
.INDENT 3.5
|
155
155
|
.sp
|
@@ -1,6 +1,6 @@
|
|
1
1
|
.\" Man page generated from reStructuredText.
|
2
2
|
.
|
3
|
-
.TH "KNIFE-UPLOAD" "1" "Chef 11.
|
3
|
+
.TH "KNIFE-UPLOAD" "1" "Chef 11.16" "" "knife upload"
|
4
4
|
.SH NAME
|
5
5
|
knife-upload \- The man page for the knife upload subcommand.
|
6
6
|
.
|
@@ -71,7 +71,7 @@ The number of allowed concurrent connections. Default: \fB10\fP\&.
|
|
71
71
|
Use to prevent the $EDITOR from being opened and to accept data as\-is.
|
72
72
|
.TP
|
73
73
|
.B \fB\-\-defaults\fP
|
74
|
-
Use to have
|
74
|
+
Use to have knife use the default value instead of asking a user to provide one.
|
75
75
|
.TP
|
76
76
|
.B \fB\-\-[no\-]diff\fP
|
77
77
|
Use to upload only new and modified files. Set to \fBfalse\fP to upload all files. Default: \fBtrue\fP\&.
|
@@ -95,7 +95,7 @@ Use to require changes to a cookbook be included as a new version. Only the \fB\
|
|
95
95
|
Shows help for the command.
|
96
96
|
.TP
|
97
97
|
.B \fB\-k KEY\fP, \fB\-\-key KEY\fP
|
98
|
-
The private key that
|
98
|
+
The private key that knife will use to sign requests made by the API client to the Chef server\&.
|
99
99
|
.TP
|
100
100
|
.B \fB\-n\fP, \fB\-\-dry\-run\fP
|
101
101
|
Use to take no action and only print out results. Default: \fBfalse\fP\&.
|
@@ -116,7 +116,7 @@ The layout of the local chef\-repo\&. Possible values: \fBstatic\fP, \fBeverythi
|
|
116
116
|
The URL for the Chef server\&.
|
117
117
|
.TP
|
118
118
|
.B \fB\-u USER\fP, \fB\-\-user USER\fP
|
119
|
-
The user name used by
|
119
|
+
The user name used by knife to sign requests made by the API client to the Chef server\&. Authentication will fail if the user name does not match the private key.
|
120
120
|
.TP
|
121
121
|
.B \fB\-v\fP, \fB\-\-version\fP
|
122
122
|
The version of the chef\-client\&.
|
@@ -125,7 +125,7 @@ The version of the chef\-client\&.
|
|
125
125
|
Set for more verbose outputs. Use \fB\-VV\fP for maximum verbosity.
|
126
126
|
.TP
|
127
127
|
.B \fB\-y\fP, \fB\-\-yes\fP
|
128
|
-
Use to respond to all confirmation prompts with "Yes".
|
128
|
+
Use to respond to all confirmation prompts with "Yes". knife will not ask for confirmation.
|
129
129
|
.TP
|
130
130
|
.B \fB\-z\fP, \fB\-\-local\-mode\fP
|
131
131
|
Use to run the chef\-client in local mode. This allows all commands that work against the Chef server to also work against the local chef\-repo\&.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
.\" Man page generated from reStructuredText.
|
2
2
|
.
|
3
|
-
.TH "KNIFE-USER" "1" "Chef 11.
|
3
|
+
.TH "KNIFE-USER" "1" "Chef 11.16" "" "knife user"
|
4
4
|
.SH NAME
|
5
5
|
knife-user \- The man page for the knife user subcommand.
|
6
6
|
.
|
@@ -54,7 +54,7 @@ The configuration file to use.
|
|
54
54
|
Use to prevent the $EDITOR from being opened and to accept data as\-is.
|
55
55
|
.TP
|
56
56
|
.B \fB\-\-defaults\fP
|
57
|
-
Use to have
|
57
|
+
Use to have knife use the default value instead of asking a user to provide one.
|
58
58
|
.TP
|
59
59
|
.B \fB\-e EDITOR\fP, \fB\-\-editor EDITOR\fP
|
60
60
|
The $EDITOR that is used for all interactive commands.
|
@@ -69,7 +69,7 @@ The output format: \fBsummary\fP (default), \fBtext\fP, \fBjson\fP, \fByaml\fP,
|
|
69
69
|
Shows help for the command.
|
70
70
|
.TP
|
71
71
|
.B \fB\-k KEY\fP, \fB\-\-key KEY\fP
|
72
|
-
The private key that
|
72
|
+
The private key that knife will use to sign requests made by the API client to the Chef server\&.
|
73
73
|
.TP
|
74
74
|
.B \fB\-\-[no\-]color\fP
|
75
75
|
Use to view colored output.
|
@@ -81,7 +81,7 @@ Use to show data after a destructive operation.
|
|
81
81
|
The URL for the Chef server\&.
|
82
82
|
.TP
|
83
83
|
.B \fB\-u USER\fP, \fB\-\-user USER\fP
|
84
|
-
The user name used by
|
84
|
+
The user name used by knife to sign requests made by the API client to the Chef server\&. Authentication will fail if the user name does not match the private key.
|
85
85
|
.TP
|
86
86
|
.B \fB\-V\fP, \fB\-\-verbose\fP
|
87
87
|
Set for more verbose outputs. Use \fB\-VV\fP for maximum verbosity.
|
@@ -90,7 +90,7 @@ Set for more verbose outputs. Use \fB\-VV\fP for maximum verbosity.
|
|
90
90
|
The version of the chef\-client\&.
|
91
91
|
.TP
|
92
92
|
.B \fB\-y\fP, \fB\-\-yes\fP
|
93
|
-
Use to respond to all confirmation prompts with "Yes".
|
93
|
+
Use to respond to all confirmation prompts with "Yes". knife will not ask for confirmation.
|
94
94
|
.TP
|
95
95
|
.B \fB\-z\fP, \fB\-\-local\-mode\fP
|
96
96
|
Use to run the chef\-client in local mode. This allows all commands that work against the Chef server to also work against the local chef\-repo\&.
|
@@ -102,7 +102,7 @@ The \fBcreate\fP argument is used to create a user. This process will generate a
|
|
102
102
|
.IP \(bu 2
|
103
103
|
For the user, the private key should be copied to the system as \fB/etc/chef/client.pem\fP\&.
|
104
104
|
.IP \(bu 2
|
105
|
-
For
|
105
|
+
For knife, the private key is typically copied to \fB~/.chef/client_name.pem\fP and referenced in the knife.rb configuration file.
|
106
106
|
.UNINDENT
|
107
107
|
.sp
|
108
108
|
\fBSyntax\fP
|
@@ -183,7 +183,7 @@ $ knife user delete "Steve Danno"
|
|
183
183
|
.UNINDENT
|
184
184
|
.SH EDIT
|
185
185
|
.sp
|
186
|
-
The \fBedit\fP argument is used to edit the details of a user. When this argument is run,
|
186
|
+
The \fBedit\fP argument is used to edit the details of a user. When this argument is run, knife will open $EDITOR\&. When finished, knife will update the Chef server with those changes.
|
187
187
|
.sp
|
188
188
|
\fBSyntax\fP
|
189
189
|
.sp
|
@@ -310,7 +310,7 @@ The attribute (or attributes) to show.
|
|
310
310
|
.sp
|
311
311
|
\fBExamples\fP
|
312
312
|
.sp
|
313
|
-
To view a user named
|
313
|
+
To view a user named \fBDennis Teck\fP, enter:
|
314
314
|
.INDENT 0.0
|
315
315
|
.INDENT 3.5
|
316
316
|
.sp
|
@@ -1,6 +1,6 @@
|
|
1
1
|
.\" Man page generated from reStructuredText.
|
2
2
|
.
|
3
|
-
.TH "KNIFE-XARGS" "1" "Chef 11.
|
3
|
+
.TH "KNIFE-XARGS" "1" "Chef 11.16" "" "knife xargs"
|
4
4
|
.SH NAME
|
5
5
|
knife-xargs \- The man page for the knife xargs subcommand.
|
6
6
|
.
|
@@ -31,7 +31,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
|
|
31
31
|
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
|
32
32
|
..
|
33
33
|
.sp
|
34
|
-
The \fBknife xargs\fP subcommand is used to
|
34
|
+
The \fBknife xargs\fP subcommand is used to take patterns from standard input, download as JSON, run a command against the downloaded JSON, and then upload any changes.
|
35
35
|
.sp
|
36
36
|
\fBSyntax\fP
|
37
37
|
.sp
|
@@ -53,7 +53,7 @@ This subcommand has the following options:
|
|
53
53
|
.INDENT 0.0
|
54
54
|
.TP
|
55
55
|
.B \fB\-0\fP
|
56
|
-
|
56
|
+
Use to show a \fBNULL\fP character (\fB\e0\fP) instead of white space as the separator. Default: \fBfalse\fP\&.
|
57
57
|
.TP
|
58
58
|
.B \fB\-\-chef\-repo\-path PATH\fP
|
59
59
|
The path to the chef\-repo\&. This setting will override the default path to the chef\-repo\&. Default: same as specified by \fBchef_repo_path\fP in config.rb.
|
@@ -77,7 +77,7 @@ Use to define a string that will be used to replace all occurrences of a file na
|
|
77
77
|
Use to define a string that will be used to replace the first occurrence of a file name. Default: \fBnil\fP\&.
|
78
78
|
.TP
|
79
79
|
.B \fB\-\-local\fP
|
80
|
-
|
80
|
+
Use to build or execute a command line against a local file. Set to \fBfalse\fP to build or execute against a remote file. Default: \fBfalse\fP\&.
|
81
81
|
.TP
|
82
82
|
.B \fB\-n MAX_ARGS\fP, \fB\-\-max\-args MAX_ARGS\fP
|
83
83
|
The maximum number of arguments per command line. Default: \fBnil\fP\&.
|
@@ -92,7 +92,7 @@ The layout of the local chef\-repo\&. Possible values: \fBstatic\fP, \fBeverythi
|
|
92
92
|
The maximum size (in characters) for a command line. Default: \fBnil\fP\&.
|
93
93
|
.TP
|
94
94
|
.B \fB\-t\fP
|
95
|
-
|
95
|
+
Use to run the print command on the command line. Default: \fBnil\fP\&.
|
96
96
|
.TP
|
97
97
|
.B \fB\-c CONFIG_FILE\fP, \fB\-\-config CONFIG_FILE\fP
|
98
98
|
The configuration file to use.
|
@@ -104,7 +104,7 @@ The port on which chef\-zero will listen.
|
|
104
104
|
Use to prevent the $EDITOR from being opened and to accept data as\-is.
|
105
105
|
.TP
|
106
106
|
.B \fB\-\-defaults\fP
|
107
|
-
Use to have
|
107
|
+
Use to have knife use the default value instead of asking a user to provide one.
|
108
108
|
.TP
|
109
109
|
.B \fB\-e EDITOR\fP, \fB\-\-editor EDITOR\fP
|
110
110
|
The $EDITOR that is used for all interactive commands.
|
@@ -119,7 +119,7 @@ The output format: \fBsummary\fP (default), \fBtext\fP, \fBjson\fP, \fByaml\fP,
|
|
119
119
|
Shows help for the command.
|
120
120
|
.TP
|
121
121
|
.B \fB\-k KEY\fP, \fB\-\-key KEY\fP
|
122
|
-
The private key that
|
122
|
+
The private key that knife will use to sign requests made by the API client to the Chef server\&.
|
123
123
|
.TP
|
124
124
|
.B \fB\-\-[no\-]color\fP
|
125
125
|
Use to view colored output.
|
@@ -131,7 +131,7 @@ Use to show data after a destructive operation.
|
|
131
131
|
The URL for the Chef server\&.
|
132
132
|
.TP
|
133
133
|
.B \fB\-u USER\fP, \fB\-\-user USER\fP
|
134
|
-
The user name used by
|
134
|
+
The user name used by knife to sign requests made by the API client to the Chef server\&. Authentication will fail if the user name does not match the private key.
|
135
135
|
.TP
|
136
136
|
.B \fB\-v\fP, \fB\-\-version\fP
|
137
137
|
The version of the chef\-client\&.
|
@@ -140,19 +140,45 @@ The version of the chef\-client\&.
|
|
140
140
|
Set for more verbose outputs. Use \fB\-VV\fP for maximum verbosity.
|
141
141
|
.TP
|
142
142
|
.B \fB\-y\fP, \fB\-\-yes\fP
|
143
|
-
Use to respond to all confirmation prompts with "Yes".
|
143
|
+
Use to respond to all confirmation prompts with "Yes". knife will not ask for confirmation.
|
144
144
|
.TP
|
145
145
|
.B \fB\-z\fP, \fB\-\-local\-mode\fP
|
146
146
|
Use to run the chef\-client in local mode. This allows all commands that work against the Chef server to also work against the local chef\-repo\&.
|
147
147
|
.UNINDENT
|
148
148
|
.sp
|
149
149
|
\fBExamples\fP
|
150
|
+
.sp
|
151
|
+
The following examples show various ways of listing all nodes on the server, and then using Perl to replace \fBgrantmc\fP with \fBgmc\fP:
|
152
|
+
.INDENT 0.0
|
153
|
+
.INDENT 3.5
|
154
|
+
.sp
|
155
|
+
.nf
|
156
|
+
.ft C
|
157
|
+
$ knife list \(aqnodes/*\(aq | knife xargs "perl \-i \-pe \(aqs/grantmc/gmc\(aq"
|
158
|
+
.ft P
|
159
|
+
.fi
|
160
|
+
.UNINDENT
|
161
|
+
.UNINDENT
|
162
|
+
.sp
|
163
|
+
or without quotes and the backslash escaped:
|
164
|
+
.INDENT 0.0
|
165
|
+
.INDENT 3.5
|
166
|
+
.sp
|
167
|
+
.nf
|
168
|
+
.ft C
|
169
|
+
$ knife list /nodes/\e* | knife xargs "perl \-i \-pe \(aqs/grantmc/gmc\(aq"
|
170
|
+
.ft P
|
171
|
+
.fi
|
172
|
+
.UNINDENT
|
173
|
+
.UNINDENT
|
174
|
+
.sp
|
175
|
+
or by using the \fB\-\-pattern\fP option:
|
150
176
|
.INDENT 0.0
|
151
177
|
.INDENT 3.5
|
152
178
|
.sp
|
153
179
|
.nf
|
154
180
|
.ft C
|
155
|
-
$ knife
|
181
|
+
$ knife xargs \-\-pattern \(aq/nodes.*\(aq "perl \-i \-pe \(aqs/grantmc/gmc\(aq"
|
156
182
|
.ft P
|
157
183
|
.fi
|
158
184
|
.UNINDENT
|
@@ -1,6 +1,6 @@
|
|
1
1
|
.\" Man page generated from reStructuredText.
|
2
2
|
.
|
3
|
-
.TH "KNIFE" "1" "Chef 11.
|
3
|
+
.TH "KNIFE" "1" "Chef 11.16" "" "knife"
|
4
4
|
.SH NAME
|
5
5
|
knife \- The man page for the knife command line tool.
|
6
6
|
.
|
@@ -31,7 +31,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
|
|
31
31
|
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
|
32
32
|
..
|
33
33
|
.sp
|
34
|
-
|
34
|
+
knife is a command\-line tool that provides an interface between a local chef\-repo and the Chef server\&. knife helps users to manage:
|
35
35
|
.INDENT 0.0
|
36
36
|
.IP \(bu 2
|
37
37
|
Nodes
|
@@ -108,14 +108,14 @@ knife xargs
|
|
108
108
|
.UNINDENT
|
109
109
|
.SH WORKING WITH KNIFE
|
110
110
|
.sp
|
111
|
-
|
111
|
+
knife runs from a management workstation and sits in\-between a Chef server and an organization\(aqs infrastructure. knife interacts with a Chef server by using the same REST API that is used by a chef\-client\&. Role\-based authentication controls (RBAC) can be used to authorize changes when knife is run with Enterprise Chef\&. knife is configured during workstation setup, but subsequent modifications can be made using the knife.rb configuration file.
|
112
112
|
.SS Common Options
|
113
113
|
.sp
|
114
|
-
The following options can be run with all
|
114
|
+
The following options can be run with all knife sub\-commands and plug\-ins:
|
115
115
|
.INDENT 0.0
|
116
116
|
.TP
|
117
117
|
.B \fB\-c CONFIG_FILE\fP, \fB\-\-config CONFIG_FILE\fP
|
118
|
-
The configuration file to use. For example, when
|
118
|
+
The configuration file to use. For example, when knife is run from a node that is configured to be managed by the Chef server, this option is used to allow knife to use the same credentials as the chef\-client when communicating with the Chef server\&.
|
119
119
|
.TP
|
120
120
|
.B \fB\-\-chef\-zero\-port PORT\fP
|
121
121
|
The port on which chef\-zero will listen.
|
@@ -124,7 +124,7 @@ The port on which chef\-zero will listen.
|
|
124
124
|
Use to prevent the $EDITOR from being opened and to accept data as\-is.
|
125
125
|
.TP
|
126
126
|
.B \fB\-\-defaults\fP
|
127
|
-
Use to have
|
127
|
+
Use to have knife use the default value instead of asking a user to provide one.
|
128
128
|
.TP
|
129
129
|
.B \fB\-e EDITOR\fP, \fB\-\-editor EDITOR\fP
|
130
130
|
The $EDITOR that is used for all interactive commands.
|
@@ -139,7 +139,7 @@ The output format: \fBsummary\fP (default), \fBtext\fP, \fBjson\fP, \fByaml\fP,
|
|
139
139
|
Shows help for the command.
|
140
140
|
.TP
|
141
141
|
.B \fB\-k KEY\fP, \fB\-\-key KEY\fP
|
142
|
-
The private key that
|
142
|
+
The private key that knife will use to sign requests made by the API client to the Chef server\&.
|
143
143
|
.TP
|
144
144
|
.B \fB\-\-[no\-]color\fP
|
145
145
|
Use to view colored output.
|
@@ -151,7 +151,7 @@ Use to show data after a destructive operation.
|
|
151
151
|
The URL for the Chef server\&.
|
152
152
|
.TP
|
153
153
|
.B \fB\-u USER\fP, \fB\-\-user USER\fP
|
154
|
-
The user name used by
|
154
|
+
The user name used by knife to sign requests made by the API client to the Chef server\&. Authentication will fail if the user name does not match the private key.
|
155
155
|
.TP
|
156
156
|
.B \fB\-v\fP, \fB\-\-version\fP
|
157
157
|
The version of the chef\-client\&.
|
@@ -160,7 +160,7 @@ The version of the chef\-client\&.
|
|
160
160
|
Set for more verbose outputs. Use \fB\-VV\fP for maximum verbosity.
|
161
161
|
.TP
|
162
162
|
.B \fB\-y\fP, \fB\-\-yes\fP
|
163
|
-
Use to respond to all confirmation prompts with "Yes".
|
163
|
+
Use to respond to all confirmation prompts with "Yes". knife will not ask for confirmation.
|
164
164
|
.TP
|
165
165
|
.B \fB\-z\fP, \fB\-\-local\-mode\fP
|
166
166
|
Use to run the chef\-client in local mode. This allows all commands that work against the Chef server to also work against the local chef\-repo\&.
|
@@ -170,7 +170,7 @@ Use to run the chef\-client in local mode. This allows all commands that work ag
|
|
170
170
|
Most data is entered using a text editor in JSON format, unless the \fB\-\-disable\-editing\fP option is entered as part of a command. (Encrypted data bags use YAML, which is a superset of JSON\&.) JSON is a common, language\-independent data format that provides a simple text representation of arbitrary data structures. For more information about JSON, see \fI\%http://www.json.org/\fP or \fI\%http://en.wikipedia.org/wiki/JSON\fP\&.
|
171
171
|
.SS Set the Text Editor
|
172
172
|
.sp
|
173
|
-
Some
|
173
|
+
Some knife commands, such as \fBknife data bag edit\fP, require that information be edited as JSON data using a text editor. For example, the following command:
|
174
174
|
.INDENT 0.0
|
175
175
|
.INDENT 3.5
|
176
176
|
.sp
|
@@ -211,7 +211,7 @@ Changes to that file can then be made:
|
|
211
211
|
.UNINDENT
|
212
212
|
.UNINDENT
|
213
213
|
.sp
|
214
|
-
The type of text editor that is used by
|
214
|
+
The type of text editor that is used by knife can be configured by adding an entry to the knife.rb file or by setting an \fBEDITOR\fP environment variable. For example, to configure the text editor to always open with vim, add the following to the knife.rb file:
|
215
215
|
.INDENT 0.0
|
216
216
|
.INDENT 3.5
|
217
217
|
.sp
|
@@ -299,9 +299,9 @@ knife[:editor] = \(aq"C:\eProgram Files (x86)\evim\evim74\egvim.exe"\(aq
|
|
299
299
|
Values can be entered with double quotes (" ") or single quotes (\(aq \(aq), but this should be done consistently.
|
300
300
|
.SS Sub\-commands
|
301
301
|
.sp
|
302
|
-
|
302
|
+
knife comes with a collection of built in subcommands that work together to provide all of the functionality required to take specific actions against any object in an organization, including cookbooks, nodes, roles, data bags, environments, and users. A knife plugin extends the functionality beyond built\-in subcommands.
|
303
303
|
.sp
|
304
|
-
|
304
|
+
knife has the following subcommands: \fBbootstrap\fP, \fBclient\fP, \fBconfigure\fP, \fBcookbook\fP, \fBcookbook site\fP, \fBdata bag\fP, \fBdelete\fP, \fBdeps\fP, \fBdiff\fP, \fBdownload\fP, \fBedit\fP, \fBenvironment\fP, \fBexec\fP, \fBindex rebuild\fP, \fBlist\fP, \fBnode\fP, \fBrecipe list\fP, \fBrole\fP, \fBsearch\fP, \fBshow\fP, \fBssh\fP, \fBstatus\fP, \fBtag\fP, \fBupload\fP, \fBuser\fP, and \fBxargs\fP\&.
|
305
305
|
.sp
|
306
306
|
\fBNOTE:\fP
|
307
307
|
.INDENT 0.0
|
@@ -311,7 +311,7 @@ The following subcommands run only against the open source Chef server: \fBindex
|
|
311
311
|
.UNINDENT
|
312
312
|
.SS Syntax
|
313
313
|
.sp
|
314
|
-
All
|
314
|
+
All knife subcommands have the following syntax:
|
315
315
|
.INDENT 0.0
|
316
316
|
.INDENT 3.5
|
317
317
|
knife subcommand [ARGUMENT] (options)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
.\" Man page generated from reStructuredText.
|
2
2
|
.
|
3
|
-
.TH "CHEF-CLIENT" "8" "Chef 11.
|
3
|
+
.TH "CHEF-CLIENT" "8" "Chef 11.16" "" "chef-client"
|
4
4
|
.SH NAME
|
5
5
|
chef-client \- The man page for the chef-client command line tool.
|
6
6
|
.
|
@@ -31,7 +31,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
|
|
31
31
|
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
|
32
32
|
..
|
33
33
|
.sp
|
34
|
-
A chef\-client is an agent that runs locally on every node that is
|
34
|
+
A chef\-client is an agent that runs locally on every node that is under management by Chef\&. When a chef\-client is run, it will perform all of the steps that are required to bring the node into the expected state, including:
|
35
35
|
.INDENT 0.0
|
36
36
|
.IP \(bu 2
|
37
37
|
Registering and authenticating the node with the Chef server
|
@@ -47,13 +47,6 @@ Taking the appropriate and required actions to configure the node
|
|
47
47
|
Looking for exceptions and notifications, handling each as required
|
48
48
|
.UNINDENT
|
49
49
|
.sp
|
50
|
-
\fBNOTE:\fP
|
51
|
-
.INDENT 0.0
|
52
|
-
.INDENT 3.5
|
53
|
-
The chef\-client executable can be run as a daemon.
|
54
|
-
.UNINDENT
|
55
|
-
.UNINDENT
|
56
|
-
.sp
|
57
50
|
The chef\-client executable is run as a command\-line tool.
|
58
51
|
.sp
|
59
52
|
\fBNOTE:\fP
|
@@ -153,7 +146,7 @@ The location in which a process identification number (pid) is saved. An executa
|
|
153
146
|
Use to permanently replace the current run\-list with the specified run\-list items.
|
154
147
|
.TP
|
155
148
|
.B \fB\-R\fP, \fB\-\-enable\-reporting\fP
|
156
|
-
Use to enable data collection
|
149
|
+
Use to enable Chef reporting, which performs data collection during a chef\-client run.
|
157
150
|
.TP
|
158
151
|
.B \fBRECIPE_FILE\fP
|
159
152
|
The path to a recipe. For example, if a recipe file is in the current directory, use \fBrecipe_file.rb\fP\&. This is typically used with the \fB\-\-local\-mode\fP option.
|