chef 10.12.0 → 10.14.0.beta.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +120 -0
- data/distro/common/html/chef-client.8.html +4 -4
- data/distro/common/html/chef-expander.8.html +4 -4
- data/distro/common/html/chef-expanderctl.8.html +4 -4
- data/distro/common/html/chef-server-webui.8.html +4 -4
- data/distro/common/html/chef-server.8.html +4 -4
- data/distro/common/html/chef-solo.8.html +4 -4
- data/distro/common/html/chef-solr.8.html +4 -4
- data/distro/common/html/knife-bootstrap.1.html +7 -5
- data/distro/common/html/knife-client.1.html +4 -4
- data/distro/common/html/knife-configure.1.html +5 -5
- data/distro/common/html/knife-cookbook-site.1.html +7 -7
- data/distro/common/html/knife-cookbook.1.html +8 -8
- data/distro/common/html/knife-data-bag.1.html +4 -4
- data/distro/common/html/knife-environment.1.html +7 -7
- data/distro/common/html/knife-exec.1.html +4 -4
- data/distro/common/html/knife-index.1.html +4 -4
- data/distro/common/html/knife-node.1.html +5 -5
- data/distro/common/html/knife-role.1.html +4 -4
- data/distro/common/html/knife-search.1.html +6 -6
- data/distro/common/html/knife-ssh.1.html +4 -4
- data/distro/common/html/knife-status.1.html +4 -4
- data/distro/common/html/knife-tag.1.html +5 -5
- data/distro/common/html/knife.1.html +12 -12
- data/distro/common/html/shef.1.html +4 -4
- data/distro/common/man/man1/knife-bootstrap.1 +5 -1
- data/distro/common/man/man1/knife-client.1 +1 -1
- data/distro/common/man/man1/knife-configure.1 +1 -1
- data/distro/common/man/man1/knife-cookbook-site.1 +1 -1
- data/distro/common/man/man1/knife-cookbook.1 +1 -1
- data/distro/common/man/man1/knife-data-bag.1 +1 -1
- data/distro/common/man/man1/knife-environment.1 +1 -1
- data/distro/common/man/man1/knife-exec.1 +1 -1
- data/distro/common/man/man1/knife-index.1 +1 -1
- data/distro/common/man/man1/knife-node.1 +1 -1
- data/distro/common/man/man1/knife-role.1 +1 -1
- data/distro/common/man/man1/knife-search.1 +1 -1
- data/distro/common/man/man1/knife-ssh.1 +1 -1
- data/distro/common/man/man1/knife-status.1 +1 -1
- data/distro/common/man/man1/knife-tag.1 +1 -1
- data/distro/common/man/man1/knife.1 +1 -1
- data/distro/common/man/man1/shef.1 +1 -1
- data/distro/common/man/man8/chef-client.8 +1 -1
- data/distro/common/man/man8/chef-expander.8 +1 -1
- data/distro/common/man/man8/chef-expanderctl.8 +1 -1
- data/distro/common/man/man8/chef-server-webui.8 +1 -1
- data/distro/common/man/man8/chef-server.8 +1 -1
- data/distro/common/man/man8/chef-solo.8 +1 -1
- data/distro/common/man/man8/chef-solr.8 +1 -1
- data/distro/common/markdown/man1/knife-bootstrap.mkd +3 -0
- data/lib/chef/application.rb +5 -1
- data/lib/chef/application/client.rb +17 -0
- data/lib/chef/application/solo.rb +17 -0
- data/lib/chef/client.rb +105 -27
- data/lib/chef/config.rb +11 -0
- data/lib/chef/cookbook/remote_file_vendor.rb +1 -5
- data/lib/chef/cookbook/synchronizer.rb +216 -0
- data/lib/chef/cookbook_version.rb +6 -26
- data/lib/chef/data_bag.rb +6 -2
- data/lib/chef/data_bag_item.rb +5 -1
- data/lib/chef/event_dispatch/base.rb +303 -0
- data/lib/chef/event_dispatch/dispatcher.rb +42 -0
- data/lib/chef/exceptions.rb +29 -1
- data/lib/chef/file_access_control.rb +7 -2
- data/lib/chef/file_access_control/unix.rb +117 -35
- data/lib/chef/file_access_control/windows.rb +57 -4
- data/lib/chef/file_cache.rb +4 -2
- data/lib/chef/formatters/base.rb +260 -0
- data/lib/chef/formatters/doc.rb +236 -0
- data/lib/chef/formatters/error_inspectors.rb +19 -0
- data/lib/chef/formatters/error_inspectors/api_error_formatting.rb +111 -0
- data/lib/chef/formatters/error_inspectors/compile_error_inspector.rb +90 -0
- data/lib/chef/formatters/error_inspectors/cookbook_resolve_error_inspector.rb +147 -0
- data/lib/chef/formatters/error_inspectors/cookbook_sync_error_inspector.rb +80 -0
- data/lib/chef/formatters/error_inspectors/node_load_error_inspector.rb +125 -0
- data/lib/chef/formatters/error_inspectors/registration_error_inspector.rb +137 -0
- data/lib/chef/formatters/error_inspectors/resource_failure_inspector.rb +101 -0
- data/lib/chef/formatters/error_inspectors/run_list_expansion_error_inspector.rb +117 -0
- data/lib/chef/formatters/minimal.rb +235 -0
- data/lib/chef/handler.rb +8 -0
- data/lib/chef/handler/error_report.rb +1 -1
- data/lib/chef/knife/bootstrap.rb +10 -1
- data/lib/chef/knife/bootstrap/archlinux-gems.erb +14 -1
- data/lib/chef/knife/bootstrap/centos5-gems.erb +13 -0
- data/lib/chef/knife/bootstrap/chef-full.erb +13 -0
- data/lib/chef/knife/bootstrap/fedora13-gems.erb +13 -0
- data/lib/chef/knife/bootstrap/ubuntu10.04-apt.erb +13 -0
- data/lib/chef/knife/bootstrap/ubuntu10.04-gems.erb +13 -0
- data/lib/chef/knife/bootstrap/ubuntu12.04-gems.erb +13 -0
- data/lib/chef/knife/cookbook_site_install.rb +17 -5
- data/lib/chef/knife/cookbook_site_show.rb +6 -3
- data/lib/chef/knife/core/cookbook_scm_repo.rb +12 -0
- data/lib/chef/knife/exec.rb +37 -2
- data/lib/chef/knife/ssh.rb +29 -5
- data/lib/chef/knife/status.rb +19 -2
- data/lib/chef/mixin/enforce_ownership_and_permissions.rb +5 -5
- data/lib/chef/mixin/language_include_recipe.rb +7 -6
- data/lib/chef/mixin/securable.rb +38 -10
- data/lib/chef/mixin/why_run.rb +339 -0
- data/lib/chef/monkey_patches/net_http.rb +22 -0
- data/lib/chef/node.rb +6 -2
- data/lib/chef/platform.rb +6 -3
- data/lib/chef/provider.rb +105 -9
- data/lib/chef/provider/cookbook_file.rb +18 -34
- data/lib/chef/provider/cron.rb +21 -12
- data/lib/chef/provider/deploy.rb +131 -75
- data/lib/chef/provider/directory.rb +80 -25
- data/lib/chef/provider/erl_call.rb +33 -28
- data/lib/chef/provider/execute.rb +8 -5
- data/lib/chef/provider/file.rb +128 -26
- data/lib/chef/provider/git.rb +87 -72
- data/lib/chef/provider/group.rb +49 -23
- data/lib/chef/provider/group/dscl.rb +9 -1
- data/lib/chef/provider/group/gpasswd.rb +8 -1
- data/lib/chef/provider/group/groupadd.rb +9 -1
- data/lib/chef/provider/group/groupmod.rb +120 -0
- data/lib/chef/provider/group/pw.rb +10 -1
- data/lib/chef/provider/group/suse.rb +8 -1
- data/lib/chef/provider/group/usermod.rb +10 -2
- data/lib/chef/provider/http_request.rb +72 -61
- data/lib/chef/provider/ifconfig.rb +51 -32
- data/lib/chef/provider/link.rb +43 -34
- data/lib/chef/provider/mdadm.rb +27 -29
- data/lib/chef/provider/mount.rb +40 -26
- data/lib/chef/provider/ohai.rb +13 -8
- data/lib/chef/provider/package.rb +57 -41
- data/lib/chef/provider/package/apt.rb +8 -11
- data/lib/chef/provider/package/dpkg.rb +30 -17
- data/lib/chef/provider/package/rpm.rb +23 -6
- data/lib/chef/provider/remote_directory.rb +8 -4
- data/lib/chef/provider/remote_file.rb +16 -18
- data/lib/chef/provider/resource_update.rb +55 -0
- data/lib/chef/provider/route.rb +19 -12
- data/lib/chef/provider/ruby_block.rb +8 -3
- data/lib/chef/provider/script.rb +4 -2
- data/lib/chef/provider/service.rb +35 -21
- data/lib/chef/provider/service/arch.rb +2 -5
- data/lib/chef/provider/service/debian.rb +32 -10
- data/lib/chef/provider/service/freebsd.rb +50 -14
- data/lib/chef/provider/service/gentoo.rb +18 -4
- data/lib/chef/provider/service/init.rb +13 -0
- data/lib/chef/provider/service/macosx.rb +32 -13
- data/lib/chef/provider/service/redhat.rb +30 -13
- data/lib/chef/provider/service/simple.rb +68 -25
- data/lib/chef/provider/service/solaris.rb +4 -0
- data/lib/chef/provider/service/systemd.rb +13 -0
- data/lib/chef/provider/service/upstart.rb +27 -1
- data/lib/chef/provider/service/windows.rb +4 -0
- data/lib/chef/provider/subversion.rb +36 -22
- data/lib/chef/provider/template.rb +27 -22
- data/lib/chef/provider/user.rb +66 -45
- data/lib/chef/providers.rb +1 -0
- data/lib/chef/resource.rb +138 -24
- data/lib/chef/resource/conditional.rb +8 -0
- data/lib/chef/resource/deploy.rb +9 -0
- data/lib/chef/resource/execute.rb +1 -1
- data/lib/chef/resource/file.rb +11 -0
- data/lib/chef/resource/link.rb +20 -0
- data/lib/chef/resource/package.rb +4 -0
- data/lib/chef/resource/template.rb +0 -1
- data/lib/chef/resource_reporter.rb +195 -0
- data/lib/chef/rest.rb +55 -38
- data/lib/chef/run_context.rb +90 -19
- data/lib/chef/run_list/run_list_expansion.rb +33 -20
- data/lib/chef/run_status.rb +4 -1
- data/lib/chef/runner.rb +9 -23
- data/lib/chef/scan_access_control.rb +133 -0
- data/lib/chef/shef/shef_session.rb +17 -5
- data/lib/chef/version.rb +1 -1
- data/spec/data/bad-config.rb +1 -0
- data/spec/data/big_json.json +1 -0
- data/spec/data/big_json_plus_one.json +1 -0
- data/spec/data/bootstrap/test-hints.erb +12 -0
- data/spec/data/bootstrap/test.erb +1 -0
- data/spec/data/cb_version_cookbooks/tatft/README.rdoc +3 -0
- data/spec/data/cb_version_cookbooks/tatft/attributes/default.rb +1 -0
- data/spec/data/cb_version_cookbooks/tatft/definitions/runit_service.rb +1 -0
- data/spec/data/cb_version_cookbooks/tatft/files/default/giant_blob.tgz +1 -0
- data/spec/data/cb_version_cookbooks/tatft/libraries/ownage.rb +1 -0
- data/spec/data/cb_version_cookbooks/tatft/providers/lwp.rb +1 -0
- data/spec/data/cb_version_cookbooks/tatft/recipes/default.rb +1 -0
- data/spec/data/cb_version_cookbooks/tatft/resources/lwr.rb +1 -0
- data/spec/data/cb_version_cookbooks/tatft/templates/default/configuration.erb +0 -0
- data/spec/data/checksum/random.txt +1 -0
- data/spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-600hhz-0 +1 -0
- data/spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-6m8zdk-0 +0 -0
- data/spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-ahd2gq-0 +1 -0
- data/spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-api8ux-0 +1 -0
- data/spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-b0r1m1-0 +1 -0
- data/spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-bfygsi-0 +1 -0
- data/spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-el14l6-0 +1 -0
- data/spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-ivrl3y-0 +1 -0
- data/spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-kkbs85-0 +1 -0
- data/spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-ory1ux-0 +1 -0
- data/spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-pgsq76-0 +1 -0
- data/spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-ra8uim-0 +1 -0
- data/spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-t7k1g-0 +1 -0
- data/spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-t8g0sv-0 +1 -0
- data/spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-ufy6g3-0 +1 -0
- data/spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-x2d6j9-0 +1 -0
- data/spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-xi0l6h-0 +1 -0
- data/spec/data/config.rb +6 -0
- data/spec/data/cookbooks/apache2/files/default/apache2_module_conf_generate.pl +2 -0
- data/spec/data/cookbooks/apache2/recipes/default.rb +3 -0
- data/spec/data/cookbooks/borken/recipes/default.rb +2 -0
- data/spec/data/cookbooks/borken/templates/default/borken.erb +2 -0
- data/spec/data/cookbooks/chefignore +6 -0
- data/spec/data/cookbooks/java/files/default/java.response +2 -0
- data/spec/data/cookbooks/openldap/attributes/default.rb +15 -0
- data/spec/data/cookbooks/openldap/attributes/smokey.rb +1 -0
- data/spec/data/cookbooks/openldap/definitions/client.rb +5 -0
- data/spec/data/cookbooks/openldap/definitions/server.rb +5 -0
- data/spec/data/cookbooks/openldap/files/default/remotedir/remote_dir_file1.txt +3 -0
- data/spec/data/cookbooks/openldap/files/default/remotedir/remote_dir_file2.txt +3 -0
- data/spec/data/cookbooks/openldap/files/default/remotedir/remotesubdir/remote_subdir_file1.txt +3 -0
- data/spec/data/cookbooks/openldap/files/default/remotedir/remotesubdir/remote_subdir_file2.txt +3 -0
- data/spec/data/cookbooks/openldap/files/default/remotedir/subdir_with_no_file_just_a_subsubdir/the_subsubdir/some_file.txt +3 -0
- data/spec/data/cookbooks/openldap/recipes/default.rb +3 -0
- data/spec/data/cookbooks/openldap/recipes/gigantor.rb +3 -0
- data/spec/data/cookbooks/openldap/recipes/one.rb +15 -0
- data/spec/data/cookbooks/openldap/templates/default/openldap_stuff.conf.erb +1 -0
- data/spec/data/cookbooks/openldap/templates/default/openldap_variable_stuff.conf.erb +1 -0
- data/spec/data/cookbooks/openldap/templates/default/test.erb +1 -0
- data/spec/data/definitions/test.rb +5 -0
- data/spec/data/environment-config.rb +5 -0
- data/spec/data/fileedit/blank +0 -0
- data/spec/data/fileedit/hosts +4 -0
- data/spec/data/gems/chef-integration-test-0.1.0.gem +0 -0
- data/spec/data/kitchen/chefignore +6 -0
- data/spec/data/kitchen/openldap/attributes/default.rb +3 -0
- data/spec/data/kitchen/openldap/attributes/robinson.rb +3 -0
- data/spec/data/kitchen/openldap/definitions/client.rb +3 -0
- data/spec/data/kitchen/openldap/definitions/drewbarrymore.rb +3 -0
- data/spec/data/kitchen/openldap/recipes/gigantor.rb +3 -0
- data/spec/data/kitchen/openldap/recipes/ignoreme.rb +3 -0
- data/spec/data/kitchen/openldap/recipes/woot.rb +3 -0
- data/spec/data/knife-site-subcommands/plugins/knife/example_subcommand.rb +0 -0
- data/spec/data/knife_subcommand/test_explicit_category.rb +7 -0
- data/spec/data/knife_subcommand/test_name_mapping.rb +4 -0
- data/spec/data/knife_subcommand/test_yourself.rb +13 -0
- data/spec/data/lwrp/providers/buck_passer.rb +3 -0
- data/spec/data/lwrp/providers/buck_passer_2.rb +10 -0
- data/spec/data/lwrp/providers/embedded_resource_accesses_providers_scope.rb +16 -0
- data/spec/data/lwrp/providers/monkey_name_printer.rb +5 -0
- data/spec/data/lwrp/providers/paint_drying_watcher.rb +7 -0
- data/spec/data/lwrp/providers/thumb_twiddler.rb +7 -0
- data/spec/data/lwrp/resources/bar.rb +1 -0
- data/spec/data/lwrp/resources/foo.rb +3 -0
- data/spec/data/lwrp/resources_with_default_attributes/nodeattr.rb +1 -0
- data/spec/data/lwrp_override/providers/buck_passer.rb +10 -0
- data/spec/data/lwrp_override/resources/foo.rb +4 -0
- data/spec/data/metadata/quick_start/metadata.rb +19 -0
- data/spec/data/nodes/default.rb +15 -0
- data/spec/data/nodes/test.example.com.rb +17 -0
- data/spec/data/nodes/test.rb +15 -0
- data/spec/data/object_loader/environments/test.json +5 -0
- data/spec/data/object_loader/environments/test.rb +2 -0
- data/spec/data/object_loader/environments/test_json_class.json +6 -0
- data/spec/data/object_loader/nodes/test.json +5 -0
- data/spec/data/object_loader/nodes/test.rb +2 -0
- data/spec/data/object_loader/nodes/test_json_class.json +6 -0
- data/spec/data/object_loader/roles/test.json +5 -0
- data/spec/data/object_loader/roles/test.rb +2 -0
- data/spec/data/object_loader/roles/test_json_class.json +6 -0
- data/spec/data/old_home_dir/my-dot-emacs +0 -0
- data/spec/data/old_home_dir/my-dot-vim +0 -0
- data/spec/data/recipes/test.rb +7 -0
- data/spec/data/remote_directory_data/remote_dir_file.txt +1 -0
- data/spec/data/remote_directory_data/remote_subdirectory/remote_subdir_file.txt +1 -0
- data/spec/data/remote_file/nyan_cat.png +0 -0
- data/spec/data/run_context/cookbooks/test/attributes/george.rb +1 -0
- data/spec/data/run_context/cookbooks/test/definitions/new_animals.rb +9 -0
- data/spec/data/run_context/cookbooks/test/definitions/new_cat.rb +5 -0
- data/spec/data/run_context/cookbooks/test/recipes/default.rb +5 -0
- data/spec/data/run_context/cookbooks/test/recipes/one.rb +7 -0
- data/spec/data/run_context/cookbooks/test/recipes/two.rb +7 -0
- data/spec/data/run_context/nodes/run_context.rb +5 -0
- data/spec/data/search_queries_to_transform.txt +98 -0
- data/spec/data/ssl/5e707473.0 +18 -0
- data/spec/data/ssl/chef-rspec.cert +27 -0
- data/spec/data/ssl/chef-rspec.key +27 -0
- data/spec/data/ssl/key.pem +15 -0
- data/spec/data/ssl/private_key.pem +27 -0
- data/spec/data/ssl/private_key_with_whitespace.pem +32 -0
- data/spec/data/templates/seattle.txt +1 -0
- data/spec/functional/knife/cookbook_delete_spec.rb +159 -0
- data/spec/functional/knife/exec_spec.rb +59 -0
- data/spec/functional/knife/ssh_spec.rb +209 -0
- data/spec/functional/resource/directory_spec.rb +39 -0
- data/spec/functional/resource/file_spec.rb +69 -0
- data/spec/functional/resource/link_spec.rb +572 -0
- data/spec/functional/resource/remote_directory_spec.rb +114 -0
- data/spec/functional/resource/remote_file_spec.rb +42 -0
- data/spec/functional/resource/template_spec.rb +68 -0
- data/spec/functional/tiny_server_spec.rb +77 -0
- data/spec/rcov.opts +2 -0
- data/spec/spec_helper.rb +77 -0
- data/spec/stress/win32/file_spec.rb +37 -0
- data/spec/stress/win32/memory_spec.rb +22 -0
- data/spec/stress/win32/security_spec.rb +69 -0
- data/spec/support/chef_helpers.rb +52 -0
- data/spec/support/lib/chef/provider/easy.rb +35 -0
- data/spec/support/lib/chef/provider/snakeoil.rb +40 -0
- data/spec/support/lib/chef/resource/cat.rb +41 -0
- data/spec/support/lib/chef/resource/one_two_three_four.rb +43 -0
- data/spec/support/lib/chef/resource/zen_master.rb +46 -0
- data/spec/support/matchers/leak.rb +96 -0
- data/spec/support/mock/constant.rb +52 -0
- data/spec/support/mock/platform.rb +18 -0
- data/spec/support/platform_helpers.rb +23 -0
- data/spec/support/platforms/prof/gc.rb +54 -0
- data/spec/support/platforms/prof/win32.rb +46 -0
- data/spec/support/shared/functional/directory_resource.rb +85 -0
- data/spec/support/shared/functional/file_resource.rb +172 -0
- data/spec/support/shared/functional/knife.rb +37 -0
- data/spec/support/shared/functional/securable_resource.rb +378 -0
- data/spec/support/shared/unit/api_error_inspector.rb +180 -0
- data/spec/tiny_server.rb +179 -0
- data/spec/unit/api_client_spec.rb +184 -0
- data/spec/unit/application/agent_spec.rb +0 -0
- data/spec/unit/application/client_spec.rb +136 -0
- data/spec/unit/application/knife_spec.rb +152 -0
- data/spec/unit/application/server_spec.rb +0 -0
- data/spec/unit/application/solo_spec.rb +167 -0
- data/spec/unit/application_spec.rb +239 -0
- data/spec/unit/certificate_spec.rb +76 -0
- data/spec/unit/checksum/storage/filesystem_spec.rb +69 -0
- data/spec/unit/checksum_cache_spec.rb +209 -0
- data/spec/unit/checksum_spec.rb +94 -0
- data/spec/unit/chef_spec.rb +25 -0
- data/spec/unit/client_spec.rb +226 -0
- data/spec/unit/config_spec.rb +203 -0
- data/spec/unit/cookbook/chefignore_spec.rb +38 -0
- data/spec/unit/cookbook/metadata_spec.rb +627 -0
- data/spec/unit/cookbook/synchronizer_spec.rb +258 -0
- data/spec/unit/cookbook/syntax_check_spec.rb +211 -0
- data/spec/unit/cookbook_loader_spec.rb +144 -0
- data/spec/unit/cookbook_manifest_spec.rb +554 -0
- data/spec/unit/cookbook_spec.rb +101 -0
- data/spec/unit/cookbook_version_spec.rb +406 -0
- data/spec/unit/couchdb_spec.rb +274 -0
- data/spec/unit/daemon_spec.rb +281 -0
- data/spec/unit/data_bag_item_spec.rb +280 -0
- data/spec/unit/data_bag_spec.rb +169 -0
- data/spec/unit/encrypted_data_bag_item_spec.rb +122 -0
- data/spec/unit/environment_spec.rb +466 -0
- data/spec/unit/exceptions_spec.rb +74 -0
- data/spec/unit/file_access_control_spec.rb +282 -0
- data/spec/unit/file_cache_spec.rb +114 -0
- data/spec/unit/formatters/error_inspectors/compile_error_inspector_spec.rb +69 -0
- data/spec/unit/formatters/error_inspectors/cookbook_resolve_error_inspector_spec.rb +75 -0
- data/spec/unit/formatters/error_inspectors/cookbook_sync_error_inspector_spec.rb +43 -0
- data/spec/unit/formatters/error_inspectors/node_load_error_inspector_spec.rb +27 -0
- data/spec/unit/formatters/error_inspectors/registration_error_inspector_spec.rb +27 -0
- data/spec/unit/formatters/error_inspectors/resource_failure_inspector_spec.rb +71 -0
- data/spec/unit/formatters/error_inspectors/run_list_expansion_error_inspector_spec.rb +93 -0
- data/spec/unit/handler/json_file_spec.rb +64 -0
- data/spec/unit/handler_spec.rb +216 -0
- data/spec/unit/index_queue_spec.rb +391 -0
- data/spec/unit/json_compat_spect.rb +53 -0
- data/spec/unit/knife/bootstrap_spec.rb +191 -0
- data/spec/unit/knife/client_bulk_delete_spec.rb +78 -0
- data/spec/unit/knife/client_create_spec.rb +74 -0
- data/spec/unit/knife/client_delete_spec.rb +40 -0
- data/spec/unit/knife/client_edit_spec.rb +40 -0
- data/spec/unit/knife/client_list_spec.rb +34 -0
- data/spec/unit/knife/client_reregister_spec.rb +61 -0
- data/spec/unit/knife/client_show_spec.rb +42 -0
- data/spec/unit/knife/config_file_selection_spec.rb +117 -0
- data/spec/unit/knife/configure_client_spec.rb +83 -0
- data/spec/unit/knife/configure_spec.rb +127 -0
- data/spec/unit/knife/cookbook_bulk_delete_spec.rb +87 -0
- data/spec/unit/knife/cookbook_create_spec.rb +251 -0
- data/spec/unit/knife/cookbook_delete_spec.rb +239 -0
- data/spec/unit/knife/cookbook_download_spec.rb +217 -0
- data/spec/unit/knife/cookbook_list_spec.rb +88 -0
- data/spec/unit/knife/cookbook_metadata_from_file_spec.rb +65 -0
- data/spec/unit/knife/cookbook_metadata_spec.rb +172 -0
- data/spec/unit/knife/cookbook_show_spec.rb +223 -0
- data/spec/unit/knife/cookbook_site_download_spec.rb +151 -0
- data/spec/unit/knife/cookbook_site_install_spec.rb +138 -0
- data/spec/unit/knife/cookbook_site_share_spec.rb +146 -0
- data/spec/unit/knife/cookbook_site_unshare_spec.rb +77 -0
- data/spec/unit/knife/cookbook_test_spec.rb +83 -0
- data/spec/unit/knife/cookbook_upload_spec.rb +143 -0
- data/spec/unit/knife/core/bootstrap_context_spec.rb +128 -0
- data/spec/unit/knife/core/cookbook_scm_repo_spec.rb +187 -0
- data/spec/unit/knife/core/object_loader_spec.rb +81 -0
- data/spec/unit/knife/core/subcommand_loader_spec.rb +54 -0
- data/spec/unit/knife/core/ui_spec.rb +160 -0
- data/spec/unit/knife/data_bag_create_spec.rb +96 -0
- data/spec/unit/knife/data_bag_edit_spec.rb +83 -0
- data/spec/unit/knife/data_bag_from_file_spec.rb +182 -0
- data/spec/unit/knife/data_bag_show_spec.rb +105 -0
- data/spec/unit/knife/environment_create_spec.rb +91 -0
- data/spec/unit/knife/environment_delete_spec.rb +71 -0
- data/spec/unit/knife/environment_edit_spec.rb +79 -0
- data/spec/unit/knife/environment_from_file_spec.rb +66 -0
- data/spec/unit/knife/environment_list_spec.rb +54 -0
- data/spec/unit/knife/environment_show_spec.rb +52 -0
- data/spec/unit/knife/index_rebuild_spec.rb +65 -0
- data/spec/unit/knife/knife_help.rb +92 -0
- data/spec/unit/knife/node_bulk_delete_spec.rb +97 -0
- data/spec/unit/knife/node_delete_spec.rb +68 -0
- data/spec/unit/knife/node_edit_spec.rb +88 -0
- data/spec/unit/knife/node_from_file_spec.rb +59 -0
- data/spec/unit/knife/node_list_spec.rb +63 -0
- data/spec/unit/knife/node_run_list_add_spec.rb +125 -0
- data/spec/unit/knife/node_run_list_remove_spec.rb +73 -0
- data/spec/unit/knife/node_show_spec.rb +48 -0
- data/spec/unit/knife/role_bulk_delete_spec.rb +80 -0
- data/spec/unit/knife/role_create_spec.rb +80 -0
- data/spec/unit/knife/role_delete_spec.rb +67 -0
- data/spec/unit/knife/role_edit_spec.rb +79 -0
- data/spec/unit/knife/role_from_file_spec.rb +69 -0
- data/spec/unit/knife/role_list_spec.rb +56 -0
- data/spec/unit/knife/tag_create_spec.rb +23 -0
- data/spec/unit/knife/tag_delete_spec.rb +25 -0
- data/spec/unit/knife/tag_list_spec.rb +23 -0
- data/spec/unit/knife_spec.rb +295 -0
- data/spec/unit/log_spec.rb +24 -0
- data/spec/unit/lwrp_spec.rb +231 -0
- data/spec/unit/mash_spec.rb +51 -0
- data/spec/unit/mixin/checksum_spec.rb +41 -0
- data/spec/unit/mixin/command_spec.rb +101 -0
- data/spec/unit/mixin/convert_to_class_name_spec.rb +50 -0
- data/spec/unit/mixin/deep_merge_spec.rb +786 -0
- data/spec/unit/mixin/deprecation_spec.rb +34 -0
- data/spec/unit/mixin/enforce_ownership_and_permissions_spec.rb +66 -0
- data/spec/unit/mixin/language_spec.rb +305 -0
- data/spec/unit/mixin/params_validate_spec.rb +370 -0
- data/spec/unit/mixin/path_sanity_spec.rb +80 -0
- data/spec/unit/mixin/securable_spec.rb +254 -0
- data/spec/unit/mixin/shell_out_spec.rb +109 -0
- data/spec/unit/mixin/template_spec.rb +104 -0
- data/spec/unit/mixin/xml_escape_spec.rb +54 -0
- data/spec/unit/monkey_patches/string_spec.rb +37 -0
- data/spec/unit/node/attribute_spec.rb +1033 -0
- data/spec/unit/node_spec.rb +744 -0
- data/spec/unit/openid_registration_spec.rb +153 -0
- data/spec/unit/platform_spec.rb +228 -0
- data/spec/unit/provider/breakpoint_spec.rb +54 -0
- data/spec/unit/provider/cookbook_file_spec.rb +209 -0
- data/spec/unit/provider/cron/solaris_spec.rb +121 -0
- data/spec/unit/provider/cron_spec.rb +766 -0
- data/spec/unit/provider/deploy/revision_spec.rb +108 -0
- data/spec/unit/provider/deploy/timestamped_spec.rb +40 -0
- data/spec/unit/provider/deploy_spec.rb +610 -0
- data/spec/unit/provider/directory_spec.rb +148 -0
- data/spec/unit/provider/env_spec.rb +232 -0
- data/spec/unit/provider/erl_call_spec.rb +88 -0
- data/spec/unit/provider/execute_spec.rb +60 -0
- data/spec/unit/provider/file_spec.rb +292 -0
- data/spec/unit/provider/git_spec.rb +352 -0
- data/spec/unit/provider/group/dscl_spec.rb +294 -0
- data/spec/unit/provider/group/gpasswd_spec.rb +108 -0
- data/spec/unit/provider/group/groupadd_spec.rb +161 -0
- data/spec/unit/provider/group/groupmod_spec.rb +134 -0
- data/spec/unit/provider/group/pw_spec.rb +140 -0
- data/spec/unit/provider/group/usermod_spec.rb +90 -0
- data/spec/unit/provider/group/windows_spec.rb +94 -0
- data/spec/unit/provider/group_spec.rb +259 -0
- data/spec/unit/provider/http_request_spec.rb +172 -0
- data/spec/unit/provider/ifconfig_spec.rb +213 -0
- data/spec/unit/provider/link_spec.rb +249 -0
- data/spec/unit/provider/log_spec.rb +81 -0
- data/spec/unit/provider/mdadm_spec.rb +131 -0
- data/spec/unit/provider/mount/mount_spec.rb +398 -0
- data/spec/unit/provider/mount/windows_spec.rb +134 -0
- data/spec/unit/provider/mount_spec.rb +160 -0
- data/spec/unit/provider/ohai_spec.rb +85 -0
- data/spec/unit/provider/package/apt_spec.rb +339 -0
- data/spec/unit/provider/package/dpkg_spec.rb +216 -0
- data/spec/unit/provider/package/easy_install_spec.rb +112 -0
- data/spec/unit/provider/package/freebsd_spec.rb +259 -0
- data/spec/unit/provider/package/macports_spec.rb +203 -0
- data/spec/unit/provider/package/pacman_spec.rb +177 -0
- data/spec/unit/provider/package/portage_spec.rb +276 -0
- data/spec/unit/provider/package/rpm_spec.rb +152 -0
- data/spec/unit/provider/package/rubygems_spec.rb +614 -0
- data/spec/unit/provider/package/smartos_spec.rb +83 -0
- data/spec/unit/provider/package/solaris_spec.rb +179 -0
- data/spec/unit/provider/package/yum_spec.rb +1795 -0
- data/spec/unit/provider/package/zypper_spec.rb +159 -0
- data/spec/unit/provider/package_spec.rb +423 -0
- data/spec/unit/provider/remote_directory_spec.rb +186 -0
- data/spec/unit/provider/remote_file_spec.rb +274 -0
- data/spec/unit/provider/route_spec.rb +230 -0
- data/spec/unit/provider/ruby_block_spec.rb +38 -0
- data/spec/unit/provider/script_spec.rb +96 -0
- data/spec/unit/provider/service/arch_service_spec.rb +330 -0
- data/spec/unit/provider/service/debian_service_spec.rb +254 -0
- data/spec/unit/provider/service/freebsd_service_spec.rb +351 -0
- data/spec/unit/provider/service/gentoo_service_spec.rb +144 -0
- data/spec/unit/provider/service/init_service_spec.rb +212 -0
- data/spec/unit/provider/service/insserv_service_spec.rb +76 -0
- data/spec/unit/provider/service/invokercd_service_spec.rb +212 -0
- data/spec/unit/provider/service/macosx_spec.rb +229 -0
- data/spec/unit/provider/service/redhat_spec.rb +155 -0
- data/spec/unit/provider/service/simple_service_spec.rb +171 -0
- data/spec/unit/provider/service/solaris_smf_service_spec.rb +140 -0
- data/spec/unit/provider/service/systemd_service_spec.rb +239 -0
- data/spec/unit/provider/service/upstart_service_spec.rb +314 -0
- data/spec/unit/provider/service/windows_spec.rb +235 -0
- data/spec/unit/provider/service_spec.rb +169 -0
- data/spec/unit/provider/subversion_spec.rb +281 -0
- data/spec/unit/provider/template_spec.rb +186 -0
- data/spec/unit/provider/user/dscl_spec.rb +439 -0
- data/spec/unit/provider/user/pw_spec.rb +235 -0
- data/spec/unit/provider/user/useradd_spec.rb +380 -0
- data/spec/unit/provider/user/windows_spec.rb +178 -0
- data/spec/unit/provider/user_spec.rb +466 -0
- data/spec/unit/provider_spec.rb +168 -0
- data/spec/unit/recipe_spec.rb +268 -0
- data/spec/unit/resource/apt_package_spec.rb +43 -0
- data/spec/unit/resource/bash_spec.rb +40 -0
- data/spec/unit/resource/breakpoint_spec.rb +43 -0
- data/spec/unit/resource/chef_gem_spec.rb +49 -0
- data/spec/unit/resource/conditional_spec.rb +147 -0
- data/spec/unit/resource/cookbook_file_spec.rb +48 -0
- data/spec/unit/resource/cron_spec.rb +154 -0
- data/spec/unit/resource/csh_spec.rb +40 -0
- data/spec/unit/resource/deploy_revision_spec.rb +47 -0
- data/spec/unit/resource/deploy_spec.rb +232 -0
- data/spec/unit/resource/directory_spec.rb +62 -0
- data/spec/unit/resource/dpkg_package_spec.rb +38 -0
- data/spec/unit/resource/easy_install_package_spec.rb +48 -0
- data/spec/unit/resource/env_spec.rb +66 -0
- data/spec/unit/resource/erl_call_spec.rb +69 -0
- data/spec/unit/resource/execute_spec.rb +108 -0
- data/spec/unit/resource/file_spec.rb +114 -0
- data/spec/unit/resource/freebsd_package_spec.rb +39 -0
- data/spec/unit/resource/gem_package_spec.rb +49 -0
- data/spec/unit/resource/git_spec.rb +46 -0
- data/spec/unit/resource/group_spec.rb +132 -0
- data/spec/unit/resource/http_request_spec.rb +46 -0
- data/spec/unit/resource/link_spec.rb +97 -0
- data/spec/unit/resource/log_spec.rb +51 -0
- data/spec/unit/resource/macports_package_spec.rb +37 -0
- data/spec/unit/resource/mdadm_spec.rb +80 -0
- data/spec/unit/resource/mount_spec.rb +138 -0
- data/spec/unit/resource/ohai_spec.rb +44 -0
- data/spec/unit/resource/package_spec.rb +77 -0
- data/spec/unit/resource/pacman_package_spec.rb +38 -0
- data/spec/unit/resource/perl_spec.rb +40 -0
- data/spec/unit/resource/portage_package_spec.rb +38 -0
- data/spec/unit/resource/python_spec.rb +40 -0
- data/spec/unit/resource/remote_directory_spec.rb +75 -0
- data/spec/unit/resource/remote_file_spec.rb +85 -0
- data/spec/unit/resource/route_spec.rb +88 -0
- data/spec/unit/resource/rpm_package_spec.rb +38 -0
- data/spec/unit/resource/ruby_block_spec.rb +46 -0
- data/spec/unit/resource/ruby_spec.rb +40 -0
- data/spec/unit/resource/scm_spec.rb +139 -0
- data/spec/unit/resource/script_spec.rb +55 -0
- data/spec/unit/resource/service_spec.rb +144 -0
- data/spec/unit/resource/smartos_package_spec.rb +38 -0
- data/spec/unit/resource/subversion_spec.rb +58 -0
- data/spec/unit/resource/template_spec.rb +101 -0
- data/spec/unit/resource/timestamped_deploy_spec.rb +28 -0
- data/spec/unit/resource/user_spec.rb +101 -0
- data/spec/unit/resource/yum_package_spec.rb +85 -0
- data/spec/unit/resource_collection/stepable_iterator_spec.rb +144 -0
- data/spec/unit/resource_collection_spec.rb +257 -0
- data/spec/unit/resource_definition_spec.rb +119 -0
- data/spec/unit/resource_platform_map_spec.rb +164 -0
- data/spec/unit/resource_reporter_spec.rb +425 -0
- data/spec/unit/resource_spec.rb +611 -0
- data/spec/unit/rest/auth_credentials_spec.rb +409 -0
- data/spec/unit/rest_spec.rb +644 -0
- data/spec/unit/role_spec.rb +275 -0
- data/spec/unit/run_context_spec.rb +64 -0
- data/spec/unit/run_list/run_list_expansion_spec.rb +129 -0
- data/spec/unit/run_list/run_list_item_spec.rb +117 -0
- data/spec/unit/run_list/versioned_recipe_list_spec.rb +123 -0
- data/spec/unit/run_list_spec.rb +507 -0
- data/spec/unit/run_status_spec.rb +145 -0
- data/spec/unit/runner_spec.rb +303 -0
- data/spec/unit/scan_access_control_spec.rb +151 -0
- data/spec/unit/search/query_spec.rb +99 -0
- data/spec/unit/shef/model_wrapper_spec.rb +97 -0
- data/spec/unit/shef/shef_ext_spec.rb +153 -0
- data/spec/unit/shef/shef_session_spec.rb +141 -0
- data/spec/unit/shef_spec.rb +161 -0
- data/spec/unit/solr_query/query_transform_spec.rb +450 -0
- data/spec/unit/solr_query/solr_http_request_spec.rb +244 -0
- data/spec/unit/solr_query_spec.rb +203 -0
- data/spec/unit/util/file_edit_spec.rb +135 -0
- data/spec/unit/version_class_spec.rb +172 -0
- data/spec/unit/version_constraint_spec.rb +134 -0
- data/spec/unit/webui_user_spec.rb +238 -0
- data/tasks/rspec.rb +75 -0
- metadata +884 -435
data/tasks/rspec.rb
ADDED
@@ -0,0 +1,75 @@
|
|
1
|
+
#
|
2
|
+
# Author:: Adam Jacob (<adam@opscode.com>)
|
3
|
+
# Author:: Daniel DeLeo (<dan@opscode.com>)
|
4
|
+
# Copyright:: Copyright (c) 2008, 2010 Opscode, Inc.
|
5
|
+
# License:: Apache License, Version 2.0
|
6
|
+
#
|
7
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
+
# you may not use this file except in compliance with the License.
|
9
|
+
# You may obtain a copy of the License at
|
10
|
+
#
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
#
|
13
|
+
# Unless required by applicable law or agreed to in writing, software
|
14
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
+
# See the License for the specific language governing permissions and
|
17
|
+
# limitations under the License.
|
18
|
+
#
|
19
|
+
|
20
|
+
require 'rubygems'
|
21
|
+
require 'rake'
|
22
|
+
|
23
|
+
CHEF_ROOT = File.join(File.dirname(__FILE__), "..")
|
24
|
+
|
25
|
+
begin
|
26
|
+
require 'rspec/core/rake_task'
|
27
|
+
|
28
|
+
task :default => :spec
|
29
|
+
|
30
|
+
desc "Run all specs in spec directory"
|
31
|
+
RSpec::Core::RakeTask.new(:spec) do |t|
|
32
|
+
t.rspec_opts = ['--options', "\"#{CHEF_ROOT}/.rspec\""]
|
33
|
+
t.pattern = FileList['spec/**/*_spec.rb']
|
34
|
+
end
|
35
|
+
|
36
|
+
desc "Run all functional specs (in functional/ directory)"
|
37
|
+
RSpec::Core::RakeTask.new(:functional) do |t|
|
38
|
+
t.rspec_opts = ['--options', "\"#{CHEF_ROOT}/spec/spec.opts\""]
|
39
|
+
t.pattern = FileList['spec/functional/**/*_spec.rb']
|
40
|
+
end
|
41
|
+
|
42
|
+
desc "Run the rspec tests with activesupport loaded"
|
43
|
+
RSpec::Core::RakeTask.new(:spec_activesupport) do |t|
|
44
|
+
t.rspec_opts = ['--options', "\"#{CHEF_ROOT}/.rspec\"", "--require active_support/core_ext"]
|
45
|
+
t.pattern = FileList['spec/unit/**/*_spec.rb']
|
46
|
+
end
|
47
|
+
|
48
|
+
namespace :spec do
|
49
|
+
desc "Run all specs in spec directory with RCov"
|
50
|
+
RSpec::Core::RakeTask.new(:rcov) do |t|
|
51
|
+
t.rspec_opts = ['--options', "\"#{CHEF_ROOT}/spec/spec.opts\""]
|
52
|
+
t.pattern = FileList['spec/**/*_spec.rb']
|
53
|
+
t.rcov = true
|
54
|
+
t.rcov_opts = lambda do
|
55
|
+
IO.readlines("#{CHEF_ROOT}/spec/rcov.opts").map {|l| l.chomp.split " "}.flatten
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
desc "Print Specdoc for all specs"
|
60
|
+
RSpec::Core::RakeTask.new(:doc) do |t|
|
61
|
+
t.rspec_opts = ["--format", "specdoc", "--dry-run"]
|
62
|
+
t.pattern = FileList['spec/**/*_spec.rb']
|
63
|
+
end
|
64
|
+
|
65
|
+
[:unit].each do |sub|
|
66
|
+
desc "Run the specs under spec/#{sub}"
|
67
|
+
RSpec::Core::RakeTask.new(sub) do |t|
|
68
|
+
t.rspec_opts = ['--options', "\"#{CHEF_ROOT}/spec/spec.opts\""]
|
69
|
+
t.pattern = FileList["spec/#{sub}/**/*_spec.rb"]
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
rescue LoadError
|
74
|
+
STDERR.puts "\n*** RSpec not available. (sudo) gem install rspec to run unit tests. ***\n\n"
|
75
|
+
end
|
metadata
CHANGED
@@ -1,13 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chef
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 2518967739
|
5
|
+
prerelease: 8
|
6
6
|
segments:
|
7
7
|
- 10
|
8
|
-
-
|
8
|
+
- 14
|
9
9
|
- 0
|
10
|
-
|
10
|
+
- beta
|
11
|
+
- 1
|
12
|
+
version: 10.14.0.beta.1
|
11
13
|
platform: ruby
|
12
14
|
authors:
|
13
15
|
- Adam Jacob
|
@@ -15,7 +17,7 @@ autorequire:
|
|
15
17
|
bindir: bin
|
16
18
|
cert_chain: []
|
17
19
|
|
18
|
-
date: 2012-
|
20
|
+
date: 2012-07-02 00:00:00 Z
|
19
21
|
dependencies:
|
20
22
|
- !ruby/object:Gem::Dependency
|
21
23
|
name: mixlib-config
|
@@ -441,489 +443,934 @@ extra_rdoc_files:
|
|
441
443
|
- README.rdoc
|
442
444
|
- LICENSE
|
443
445
|
files:
|
446
|
+
- Rakefile
|
444
447
|
- LICENSE
|
445
448
|
- README.rdoc
|
446
|
-
- distro/
|
447
|
-
- distro/
|
449
|
+
- distro/README
|
450
|
+
- distro/arch/etc/rc.d/chef-client
|
451
|
+
- distro/arch/etc/rc.d/chef-server
|
452
|
+
- distro/arch/etc/rc.d/chef-solr
|
453
|
+
- distro/arch/etc/rc.d/chef-server-webui
|
454
|
+
- distro/arch/etc/rc.d/chef-expander
|
455
|
+
- distro/arch/etc/conf.d/chef-server.conf
|
456
|
+
- distro/arch/etc/conf.d/chef-expander.conf
|
457
|
+
- distro/arch/etc/conf.d/chef-client.conf
|
458
|
+
- distro/arch/etc/conf.d/chef-server-webui.conf
|
459
|
+
- distro/arch/etc/conf.d/chef-solr.conf
|
460
|
+
- distro/redhat/etc/init.d/chef-client
|
461
|
+
- distro/redhat/etc/init.d/chef-server
|
462
|
+
- distro/redhat/etc/init.d/chef-solr
|
463
|
+
- distro/redhat/etc/init.d/chef-server-webui
|
464
|
+
- distro/redhat/etc/init.d/chef-expander
|
465
|
+
- distro/redhat/etc/logrotate.d/chef-client
|
466
|
+
- distro/redhat/etc/logrotate.d/chef-server
|
467
|
+
- distro/redhat/etc/logrotate.d/chef-solr
|
468
|
+
- distro/redhat/etc/logrotate.d/chef-server-webui
|
469
|
+
- distro/redhat/etc/logrotate.d/chef-expander
|
470
|
+
- distro/redhat/etc/sysconfig/chef-client
|
471
|
+
- distro/redhat/etc/sysconfig/chef-server
|
472
|
+
- distro/redhat/etc/sysconfig/chef-solr
|
473
|
+
- distro/redhat/etc/sysconfig/chef-server-webui
|
474
|
+
- distro/redhat/etc/sysconfig/chef-expander
|
475
|
+
- distro/windows/service_manager.rb
|
476
|
+
- distro/debian/etc/init.d/chef-client
|
477
|
+
- distro/debian/etc/init.d/chef-server
|
478
|
+
- distro/debian/etc/init.d/chef-solr
|
479
|
+
- distro/debian/etc/init.d/chef-server-webui
|
480
|
+
- distro/debian/etc/init.d/chef-expander
|
481
|
+
- distro/debian/etc/default/chef-client
|
482
|
+
- distro/debian/etc/default/chef-server
|
483
|
+
- distro/debian/etc/default/chef-solr
|
484
|
+
- distro/debian/etc/default/chef-server-webui
|
485
|
+
- distro/debian/etc/default/chef-expander
|
486
|
+
- distro/debian/etc/init/chef-server.conf
|
487
|
+
- distro/debian/etc/init/chef-expander.conf
|
488
|
+
- distro/debian/etc/init/chef-client.conf
|
489
|
+
- distro/debian/etc/init/chef-server-webui.conf
|
490
|
+
- distro/debian/etc/init/chef-solr.conf
|
491
|
+
- distro/common/html/chef-server-webui.8.html
|
492
|
+
- distro/common/html/knife-ssh.1.html
|
493
|
+
- distro/common/html/knife.1.html
|
448
494
|
- distro/common/html/knife-tag.1.html
|
495
|
+
- distro/common/html/shef.1.html
|
496
|
+
- distro/common/html/knife-node.1.html
|
449
497
|
- distro/common/html/chef-client.8.html
|
450
|
-
- distro/common/html/chef-solo.8.html
|
451
498
|
- distro/common/html/knife-role.1.html
|
452
|
-
- distro/common/html/chef-
|
499
|
+
- distro/common/html/chef-solo.8.html
|
500
|
+
- distro/common/html/knife-cookbook.1.html
|
501
|
+
- distro/common/html/knife-bootstrap.1.html
|
453
502
|
- distro/common/html/knife-index.1.html
|
454
|
-
- distro/common/html/knife-status.1.html
|
455
|
-
- distro/common/html/knife-environment.1.html
|
456
|
-
- distro/common/html/knife-recipe.1.html
|
457
|
-
- distro/common/html/knife-data-bag.1.html
|
458
503
|
- distro/common/html/knife-exec.1.html
|
504
|
+
- distro/common/html/knife-data-bag.1.html
|
459
505
|
- distro/common/html/chef-solr.8.html
|
506
|
+
- distro/common/html/knife-cookbook-site.1.html
|
460
507
|
- distro/common/html/knife-configure.1.html
|
461
|
-
- distro/common/html/knife-
|
462
|
-
- distro/common/html/
|
463
|
-
- distro/common/html/knife.1.html
|
464
|
-
- distro/common/html/shef.1.html
|
465
|
-
- distro/common/html/knife-cookbook.1.html
|
466
|
-
- distro/common/html/chef-server.8.html
|
467
|
-
- distro/common/html/knife-ssh.1.html
|
508
|
+
- distro/common/html/knife-environment.1.html
|
509
|
+
- distro/common/html/knife-search.1.html
|
510
|
+
- distro/common/html/knife-recipe.1.html
|
468
511
|
- distro/common/html/chef-expander.8.html
|
469
|
-
- distro/common/html/
|
470
|
-
- distro/common/html/
|
471
|
-
- distro/common/
|
472
|
-
- distro/common/
|
473
|
-
- distro/common/man/man1/knife-bootstrap.1
|
474
|
-
- distro/common/man/man1/knife-cookbook.1
|
475
|
-
- distro/common/man/man1/knife-exec.1
|
476
|
-
- distro/common/man/man1/knife-tag.1
|
477
|
-
- distro/common/man/man1/knife-status.1
|
478
|
-
- distro/common/man/man1/knife.1
|
479
|
-
- distro/common/man/man1/knife-data-bag.1
|
480
|
-
- distro/common/man/man1/knife-index.1
|
481
|
-
- distro/common/man/man1/knife-configure.1
|
482
|
-
- distro/common/man/man1/knife-search.1
|
483
|
-
- distro/common/man/man1/knife-node.1
|
484
|
-
- distro/common/man/man1/knife-client.1
|
485
|
-
- distro/common/man/man1/shef.1
|
486
|
-
- distro/common/man/man1/knife-role.1
|
487
|
-
- distro/common/man/man1/knife-cookbook-site.1
|
488
|
-
- distro/common/man/man8/chef-server.8
|
489
|
-
- distro/common/man/man8/chef-client.8
|
490
|
-
- distro/common/man/man8/chef-server-webui.8
|
491
|
-
- distro/common/man/man8/chef-expander.8
|
492
|
-
- distro/common/man/man8/chef-solo.8
|
493
|
-
- distro/common/man/man8/chef-expanderctl.8
|
494
|
-
- distro/common/man/man8/chef-solr.8
|
495
|
-
- distro/common/markdown/man1/knife-ssh.mkd
|
496
|
-
- distro/common/markdown/man1/knife-role.mkd
|
497
|
-
- distro/common/markdown/man1/knife-cookbook.mkd
|
512
|
+
- distro/common/html/chef-server.8.html
|
513
|
+
- distro/common/html/chef-expanderctl.8.html
|
514
|
+
- distro/common/html/knife-client.1.html
|
515
|
+
- distro/common/html/knife-status.1.html
|
498
516
|
- distro/common/markdown/man1/shef.mkd
|
499
|
-
- distro/common/markdown/man1/knife-
|
500
|
-
- distro/common/markdown/man1/knife-bootstrap.mkd
|
501
|
-
- distro/common/markdown/man1/knife-cookbook-site.mkd
|
517
|
+
- distro/common/markdown/man1/knife-configure.mkd
|
502
518
|
- distro/common/markdown/man1/knife-client.mkd
|
503
519
|
- distro/common/markdown/man1/knife.mkd
|
504
|
-
- distro/common/markdown/man1/knife-status.mkd
|
505
520
|
- distro/common/markdown/man1/knife-data-bag.mkd
|
506
|
-
- distro/common/markdown/man1/knife-
|
507
|
-
- distro/common/markdown/man1/knife-search.mkd
|
508
|
-
- distro/common/markdown/man1/knife-environment.mkd
|
521
|
+
- distro/common/markdown/man1/knife-cookbook-site.mkd
|
509
522
|
- distro/common/markdown/man1/knife-index.mkd
|
523
|
+
- distro/common/markdown/man1/knife-environment.mkd
|
524
|
+
- distro/common/markdown/man1/knife-status.mkd
|
510
525
|
- distro/common/markdown/man1/knife-exec.mkd
|
526
|
+
- distro/common/markdown/man1/knife-role.mkd
|
527
|
+
- distro/common/markdown/man1/knife-cookbook.mkd
|
528
|
+
- distro/common/markdown/man1/knife-search.mkd
|
529
|
+
- distro/common/markdown/man1/knife-ssh.mkd
|
530
|
+
- distro/common/markdown/man1/knife-bootstrap.mkd
|
511
531
|
- distro/common/markdown/man1/knife-tag.mkd
|
512
|
-
- distro/common/markdown/
|
532
|
+
- distro/common/markdown/man1/knife-node.mkd
|
533
|
+
- distro/common/markdown/README
|
513
534
|
- distro/common/markdown/man8/chef-solo.mkd
|
514
535
|
- distro/common/markdown/man8/chef-solr.mkd
|
536
|
+
- distro/common/markdown/man8/chef-server.mkd
|
515
537
|
- distro/common/markdown/man8/chef-client.mkd
|
538
|
+
- distro/common/markdown/man8/chef-server-webui.mkd
|
516
539
|
- distro/common/markdown/man8/chef-expander.mkd
|
517
|
-
- distro/common/markdown/man8/chef-server.mkd
|
518
540
|
- distro/common/markdown/man8/chef-expanderctl.mkd
|
519
|
-
- distro/common/
|
520
|
-
- distro/
|
521
|
-
- distro/
|
522
|
-
- distro/
|
523
|
-
- distro/
|
524
|
-
- distro/
|
525
|
-
- distro/
|
526
|
-
- distro/
|
527
|
-
- distro/
|
528
|
-
- distro/
|
529
|
-
- distro/
|
530
|
-
- distro/
|
531
|
-
- distro/
|
532
|
-
- distro/
|
533
|
-
- distro/
|
534
|
-
- distro/
|
535
|
-
- distro/
|
536
|
-
- distro/
|
537
|
-
- distro/
|
538
|
-
- distro/
|
539
|
-
- distro/
|
540
|
-
- distro/
|
541
|
-
- distro/
|
542
|
-
- distro/
|
543
|
-
-
|
544
|
-
-
|
545
|
-
-
|
546
|
-
-
|
547
|
-
-
|
548
|
-
-
|
549
|
-
- distro/debian/etc/default/chef-server
|
550
|
-
- distro/debian/etc/init.d/chef-server-webui
|
551
|
-
- distro/debian/etc/init.d/chef-solr
|
552
|
-
- distro/debian/etc/init.d/chef-expander
|
553
|
-
- distro/debian/etc/init.d/chef-client
|
554
|
-
- distro/debian/etc/init.d/chef-server
|
555
|
-
- distro/debian/etc/init/chef-server-webui.conf
|
556
|
-
- distro/debian/etc/init/chef-client.conf
|
557
|
-
- distro/debian/etc/init/chef-solr.conf
|
558
|
-
- distro/debian/etc/init/chef-expander.conf
|
559
|
-
- distro/debian/etc/init/chef-server.conf
|
560
|
-
- distro/windows/service_manager.rb
|
561
|
-
- distro/README
|
562
|
-
- lib/chef/handler.rb
|
563
|
-
- lib/chef/solr_query.rb
|
564
|
-
- lib/chef/runner.rb
|
541
|
+
- distro/common/man/man1/knife-cookbook-site.1
|
542
|
+
- distro/common/man/man1/knife-node.1
|
543
|
+
- distro/common/man/man1/knife-configure.1
|
544
|
+
- distro/common/man/man1/knife-bootstrap.1
|
545
|
+
- distro/common/man/man1/knife-ssh.1
|
546
|
+
- distro/common/man/man1/shef.1
|
547
|
+
- distro/common/man/man1/knife-cookbook.1
|
548
|
+
- distro/common/man/man1/knife-search.1
|
549
|
+
- distro/common/man/man1/knife-tag.1
|
550
|
+
- distro/common/man/man1/knife-index.1
|
551
|
+
- distro/common/man/man1/knife-status.1
|
552
|
+
- distro/common/man/man1/knife.1
|
553
|
+
- distro/common/man/man1/knife-role.1
|
554
|
+
- distro/common/man/man1/knife-data-bag.1
|
555
|
+
- distro/common/man/man1/knife-environment.1
|
556
|
+
- distro/common/man/man1/knife-exec.1
|
557
|
+
- distro/common/man/man1/knife-client.1
|
558
|
+
- distro/common/man/man8/chef-solo.8
|
559
|
+
- distro/common/man/man8/chef-server-webui.8
|
560
|
+
- distro/common/man/man8/chef-client.8
|
561
|
+
- distro/common/man/man8/chef-solr.8
|
562
|
+
- distro/common/man/man8/chef-expander.8
|
563
|
+
- distro/common/man/man8/chef-server.8
|
564
|
+
- distro/common/man/man8/chef-expanderctl.8
|
565
|
+
- lib/chef.rb
|
566
|
+
- lib/chef/resource_reporter.rb
|
567
|
+
- lib/chef/certificate.rb
|
568
|
+
- lib/chef/resource_definition_list.rb
|
569
|
+
- lib/chef/rest.rb
|
570
|
+
- lib/chef/resource_collection.rb
|
565
571
|
- lib/chef/file_access_control/windows.rb
|
566
572
|
- lib/chef/file_access_control/unix.rb
|
567
|
-
- lib/chef/
|
568
|
-
- lib/chef/
|
569
|
-
- lib/chef/
|
573
|
+
- lib/chef/resource_collection/stepable_iterator.rb
|
574
|
+
- lib/chef/rest/cookie_jar.rb
|
575
|
+
- lib/chef/rest/auth_credentials.rb
|
576
|
+
- lib/chef/rest/rest_request.rb
|
577
|
+
- lib/chef/file_access_control.rb
|
578
|
+
- lib/chef/shef/shef_session.rb
|
579
|
+
- lib/chef/shef/ext.rb
|
580
|
+
- lib/chef/shef/model_wrapper.rb
|
581
|
+
- lib/chef/shef/shef_rest.rb
|
582
|
+
- lib/chef/sandbox.rb
|
583
|
+
- lib/chef/knife.rb
|
584
|
+
- lib/chef/cookbook_version.rb
|
585
|
+
- lib/chef/application.rb
|
586
|
+
- lib/chef/cookbook_uploader.rb
|
587
|
+
- lib/chef/run_list.rb
|
588
|
+
- lib/chef/index_queue.rb
|
589
|
+
- lib/chef/cookbook_version_selector.rb
|
590
|
+
- lib/chef/couchdb.rb
|
591
|
+
- lib/chef/platform.rb
|
592
|
+
- lib/chef/applications.rb
|
593
|
+
- lib/chef/nil_argument.rb
|
594
|
+
- lib/chef/checksum/storage/filesystem.rb
|
595
|
+
- lib/chef/checksum/storage.rb
|
596
|
+
- lib/chef/client.rb
|
597
|
+
- lib/chef/monkey_patches/regexp.rb
|
598
|
+
- lib/chef/monkey_patches/numeric.rb
|
599
|
+
- lib/chef/monkey_patches/net_http.rb
|
600
|
+
- lib/chef/monkey_patches/moneta.rb
|
601
|
+
- lib/chef/monkey_patches/dir.rb
|
602
|
+
- lib/chef/monkey_patches/tempfile.rb
|
603
|
+
- lib/chef/monkey_patches/object.rb
|
604
|
+
- lib/chef/monkey_patches/string.rb
|
605
|
+
- lib/chef/solr_query/solr_http_request.rb
|
570
606
|
- lib/chef/solr_query/lucene_nodes.rb
|
571
607
|
- lib/chef/solr_query/lucene.treetop
|
572
608
|
- lib/chef/solr_query/query_transform.rb
|
573
|
-
- lib/chef/
|
574
|
-
- lib/chef/
|
575
|
-
- lib/chef/
|
609
|
+
- lib/chef/version.rb
|
610
|
+
- lib/chef/runner.rb
|
611
|
+
- lib/chef/handler/json_file.rb
|
612
|
+
- lib/chef/handler/error_report.rb
|
613
|
+
- lib/chef/json_compat.rb
|
614
|
+
- lib/chef/mixins.rb
|
615
|
+
- lib/chef/streaming_cookbook_uploader.rb
|
616
|
+
- lib/chef/scan_access_control.rb
|
617
|
+
- lib/chef/formatters/base.rb
|
618
|
+
- lib/chef/formatters/doc.rb
|
619
|
+
- lib/chef/formatters/minimal.rb
|
620
|
+
- lib/chef/formatters/error_inspectors/api_error_formatting.rb
|
621
|
+
- lib/chef/formatters/error_inspectors/resource_failure_inspector.rb
|
622
|
+
- lib/chef/formatters/error_inspectors/cookbook_resolve_error_inspector.rb
|
623
|
+
- lib/chef/formatters/error_inspectors/registration_error_inspector.rb
|
624
|
+
- lib/chef/formatters/error_inspectors/run_list_expansion_error_inspector.rb
|
625
|
+
- lib/chef/formatters/error_inspectors/cookbook_sync_error_inspector.rb
|
626
|
+
- lib/chef/formatters/error_inspectors/compile_error_inspector.rb
|
627
|
+
- lib/chef/formatters/error_inspectors/node_load_error_inspector.rb
|
628
|
+
- lib/chef/formatters/error_inspectors.rb
|
629
|
+
- lib/chef/run_list/run_list_item.rb
|
630
|
+
- lib/chef/run_list/versioned_recipe_list.rb
|
631
|
+
- lib/chef/run_list/run_list_expansion.rb
|
632
|
+
- lib/chef/resource_definition.rb
|
576
633
|
- lib/chef/node.rb
|
577
|
-
- lib/chef/
|
634
|
+
- lib/chef/mash.rb
|
635
|
+
- lib/chef/checksum_cache.rb
|
636
|
+
- lib/chef/checksum.rb
|
578
637
|
- lib/chef/encrypted_data_bag_item.rb
|
579
|
-
- lib/chef/
|
580
|
-
- lib/chef/
|
581
|
-
- lib/chef/
|
582
|
-
- lib/chef/
|
638
|
+
- lib/chef/tasks/chef_repo.rake
|
639
|
+
- lib/chef/daemon.rb
|
640
|
+
- lib/chef/data_bag.rb
|
641
|
+
- lib/chef/file_cache.rb
|
642
|
+
- lib/chef/recipe.rb
|
643
|
+
- lib/chef/config.rb
|
644
|
+
- lib/chef/index_queue/consumer.rb
|
645
|
+
- lib/chef/index_queue/amqp_client.rb
|
646
|
+
- lib/chef/index_queue/indexable.rb
|
647
|
+
- lib/chef/log.rb
|
648
|
+
- lib/chef/version_class.rb
|
649
|
+
- lib/chef/resources.rb
|
650
|
+
- lib/chef/node/attribute.rb
|
651
|
+
- lib/chef/providers.rb
|
652
|
+
- lib/chef/shef.rb
|
653
|
+
- lib/chef/exceptions.rb
|
654
|
+
- lib/chef/win32/error.rb
|
655
|
+
- lib/chef/win32/unicode.rb
|
656
|
+
- lib/chef/win32/file.rb
|
657
|
+
- lib/chef/win32/security/sid.rb
|
658
|
+
- lib/chef/win32/security/securable_object.rb
|
659
|
+
- lib/chef/win32/security/token.rb
|
660
|
+
- lib/chef/win32/security/ace.rb
|
661
|
+
- lib/chef/win32/security/acl.rb
|
662
|
+
- lib/chef/win32/security/security_descriptor.rb
|
663
|
+
- lib/chef/win32/memory.rb
|
664
|
+
- lib/chef/win32/version.rb
|
665
|
+
- lib/chef/win32/api/error.rb
|
666
|
+
- lib/chef/win32/api/unicode.rb
|
667
|
+
- lib/chef/win32/api/file.rb
|
668
|
+
- lib/chef/win32/api/memory.rb
|
669
|
+
- lib/chef/win32/api/psapi.rb
|
670
|
+
- lib/chef/win32/api/security.rb
|
671
|
+
- lib/chef/win32/api/process.rb
|
672
|
+
- lib/chef/win32/api/system.rb
|
673
|
+
- lib/chef/win32/handle.rb
|
674
|
+
- lib/chef/win32/file/info.rb
|
675
|
+
- lib/chef/win32/api.rb
|
676
|
+
- lib/chef/win32/security.rb
|
677
|
+
- lib/chef/win32/process.rb
|
678
|
+
- lib/chef/mixin/xml_escape.rb
|
679
|
+
- lib/chef/mixin/language_include_attribute.rb
|
680
|
+
- lib/chef/mixin/convert_to_class_name.rb
|
681
|
+
- lib/chef/mixin/path_sanity.rb
|
682
|
+
- lib/chef/mixin/get_source_from_package.rb
|
683
|
+
- lib/chef/mixin/recipe_definition_dsl_core.rb
|
684
|
+
- lib/chef/mixin/check_helper.rb
|
685
|
+
- lib/chef/mixin/enforce_ownership_and_permissions.rb
|
686
|
+
- lib/chef/mixin/checksum.rb
|
687
|
+
- lib/chef/mixin/securable.rb
|
688
|
+
- lib/chef/mixin/command.rb
|
689
|
+
- lib/chef/mixin/deprecation.rb
|
690
|
+
- lib/chef/mixin/language_include_recipe.rb
|
691
|
+
- lib/chef/mixin/language.rb
|
692
|
+
- lib/chef/mixin/create_path.rb
|
693
|
+
- lib/chef/mixin/template.rb
|
694
|
+
- lib/chef/mixin/shell_out.rb
|
695
|
+
- lib/chef/mixin/from_file.rb
|
696
|
+
- lib/chef/mixin/params_validate.rb
|
697
|
+
- lib/chef/mixin/why_run.rb
|
698
|
+
- lib/chef/mixin/deep_merge.rb
|
699
|
+
- lib/chef/mixin/command/windows.rb
|
700
|
+
- lib/chef/mixin/command/unix.rb
|
701
|
+
- lib/chef/environment.rb
|
702
|
+
- lib/chef/provider.rb
|
703
|
+
- lib/chef/openid_registration.rb
|
704
|
+
- lib/chef/cookbook/chefignore.rb
|
705
|
+
- lib/chef/cookbook/file_system_file_vendor.rb
|
706
|
+
- lib/chef/cookbook/file_vendor.rb
|
707
|
+
- lib/chef/cookbook/cookbook_collection.rb
|
708
|
+
- lib/chef/cookbook/syntax_check.rb
|
709
|
+
- lib/chef/cookbook/metadata.rb
|
710
|
+
- lib/chef/cookbook/synchronizer.rb
|
711
|
+
- lib/chef/cookbook/cookbook_version_loader.rb
|
712
|
+
- lib/chef/cookbook/remote_file_vendor.rb
|
713
|
+
- lib/chef/solr_query.rb
|
583
714
|
- lib/chef/util/file_edit.rb
|
715
|
+
- lib/chef/util/windows/net_user.rb
|
584
716
|
- lib/chef/util/windows/net_use.rb
|
585
717
|
- lib/chef/util/windows/volume.rb
|
586
718
|
- lib/chef/util/windows/net_group.rb
|
587
|
-
- lib/chef/util/windows
|
588
|
-
- lib/chef/
|
589
|
-
- lib/chef/
|
590
|
-
- lib/chef/
|
591
|
-
- lib/chef/knife/data_bag_from_file.rb
|
592
|
-
- lib/chef/knife/configure_client.rb
|
593
|
-
- lib/chef/knife/search.rb
|
594
|
-
- lib/chef/knife/data_bag_show.rb
|
595
|
-
- lib/chef/knife/client_edit.rb
|
596
|
-
- lib/chef/knife/data_bag_list.rb
|
597
|
-
- lib/chef/knife/cookbook_delete.rb
|
598
|
-
- lib/chef/knife/cookbook_bulk_delete.rb
|
599
|
-
- lib/chef/knife/node_from_file.rb
|
600
|
-
- lib/chef/knife/cookbook_upload.rb
|
601
|
-
- lib/chef/knife/cookbook_site_unshare.rb
|
602
|
-
- lib/chef/knife/core/object_loader.rb
|
603
|
-
- lib/chef/knife/core/subcommand_loader.rb
|
604
|
-
- lib/chef/knife/core/cookbook_scm_repo.rb
|
605
|
-
- lib/chef/knife/core/node_presenter.rb
|
606
|
-
- lib/chef/knife/core/bootstrap_context.rb
|
607
|
-
- lib/chef/knife/core/ui.rb
|
608
|
-
- lib/chef/knife/core/text_formatter.rb
|
609
|
-
- lib/chef/knife/core/generic_presenter.rb
|
610
|
-
- lib/chef/knife/core/node_editor.rb
|
611
|
-
- lib/chef/knife/bootstrap.rb
|
612
|
-
- lib/chef/knife/cookbook_metadata.rb
|
613
|
-
- lib/chef/knife/node_show.rb
|
614
|
-
- lib/chef/knife/data_bag_create.rb
|
615
|
-
- lib/chef/knife/recipe_list.rb
|
616
|
-
- lib/chef/knife/client_show.rb
|
617
|
-
- lib/chef/knife/role_from_file.rb
|
618
|
-
- lib/chef/knife/node_list.rb
|
619
|
-
- lib/chef/knife/role_show.rb
|
620
|
-
- lib/chef/knife/environment_show.rb
|
621
|
-
- lib/chef/knife/node_create.rb
|
622
|
-
- lib/chef/knife/cookbook_download.rb
|
623
|
-
- lib/chef/knife/role_edit.rb
|
624
|
-
- lib/chef/knife/environment_create.rb
|
625
|
-
- lib/chef/knife/configure.rb
|
626
|
-
- lib/chef/knife/status.rb
|
627
|
-
- lib/chef/knife/cookbook_test.rb
|
628
|
-
- lib/chef/knife/cookbook_show.rb
|
629
|
-
- lib/chef/knife/client_delete.rb
|
630
|
-
- lib/chef/knife/environment_list.rb
|
631
|
-
- lib/chef/knife/index_rebuild.rb
|
632
|
-
- lib/chef/knife/node_delete.rb
|
633
|
-
- lib/chef/knife/environment_from_file.rb
|
634
|
-
- lib/chef/knife/node_run_list_add.rb
|
635
|
-
- lib/chef/knife/cookbook_site_install.rb
|
636
|
-
- lib/chef/knife/help_topics.rb
|
637
|
-
- lib/chef/knife/data_bag_delete.rb
|
638
|
-
- lib/chef/knife/role_create.rb
|
639
|
-
- lib/chef/knife/cookbook_site_list.rb
|
640
|
-
- lib/chef/knife/client_bulk_delete.rb
|
641
|
-
- lib/chef/knife/data_bag_edit.rb
|
642
|
-
- lib/chef/knife/client_create.rb
|
643
|
-
- lib/chef/knife/node_run_list_remove.rb
|
644
|
-
- lib/chef/knife/cookbook_create.rb
|
645
|
-
- lib/chef/knife/node_edit.rb
|
646
|
-
- lib/chef/knife/exec.rb
|
647
|
-
- lib/chef/knife/cookbook_list.rb
|
648
|
-
- lib/chef/knife/client_list.rb
|
649
|
-
- lib/chef/knife/bootstrap/ubuntu10.04-gems.erb
|
650
|
-
- lib/chef/knife/bootstrap/chef-full.erb
|
651
|
-
- lib/chef/knife/bootstrap/ubuntu12.04-gems.erb
|
652
|
-
- lib/chef/knife/bootstrap/archlinux-gems.erb
|
653
|
-
- lib/chef/knife/bootstrap/fedora13-gems.erb
|
654
|
-
- lib/chef/knife/bootstrap/ubuntu10.04-apt.erb
|
655
|
-
- lib/chef/knife/bootstrap/centos5-gems.erb
|
656
|
-
- lib/chef/knife/ssh.rb
|
657
|
-
- lib/chef/knife/help.rb
|
658
|
-
- lib/chef/knife/environment_edit.rb
|
659
|
-
- lib/chef/knife/environment_delete.rb
|
660
|
-
- lib/chef/knife/cookbook_site_show.rb
|
661
|
-
- lib/chef/knife/cookbook_site_download.rb
|
662
|
-
- lib/chef/knife/cookbook_site_share.rb
|
663
|
-
- lib/chef/knife/cookbook_site_vendor.rb
|
664
|
-
- lib/chef/knife/cookbook_site_search.rb
|
665
|
-
- lib/chef/knife/tag_list.rb
|
666
|
-
- lib/chef/knife/node_bulk_delete.rb
|
667
|
-
- lib/chef/knife/tag_create.rb
|
668
|
-
- lib/chef/knife/client_reregister.rb
|
669
|
-
- lib/chef/knife/role_list.rb
|
670
|
-
- lib/chef/knife/role_delete.rb
|
671
|
-
- lib/chef/rest.rb
|
672
|
-
- lib/chef/cookbook_version_selector.rb
|
673
|
-
- lib/chef/monkey_patches/dir.rb
|
674
|
-
- lib/chef/monkey_patches/string.rb
|
675
|
-
- lib/chef/monkey_patches/numeric.rb
|
676
|
-
- lib/chef/monkey_patches/object.rb
|
677
|
-
- lib/chef/monkey_patches/regexp.rb
|
678
|
-
- lib/chef/monkey_patches/moneta.rb
|
679
|
-
- lib/chef/monkey_patches/tempfile.rb
|
680
|
-
- lib/chef/shef.rb
|
681
|
-
- lib/chef/handler/json_file.rb
|
682
|
-
- lib/chef/handler/error_report.rb
|
683
|
-
- lib/chef/node/attribute.rb
|
684
|
-
- lib/chef/rest/rest_request.rb
|
685
|
-
- lib/chef/rest/cookie_jar.rb
|
686
|
-
- lib/chef/rest/auth_credentials.rb
|
687
|
-
- lib/chef/tasks/chef_repo.rake
|
688
|
-
- lib/chef/resource_definition.rb
|
719
|
+
- lib/chef/util/windows.rb
|
720
|
+
- lib/chef/run_status.rb
|
721
|
+
- lib/chef/version_constraint.rb
|
722
|
+
- lib/chef/handler.rb
|
689
723
|
- lib/chef/shell_out.rb
|
690
|
-
- lib/chef/
|
691
|
-
- lib/chef/
|
692
|
-
- lib/chef/
|
693
|
-
- lib/chef/
|
694
|
-
- lib/chef/
|
695
|
-
- lib/chef/
|
696
|
-
- lib/chef/
|
697
|
-
- lib/chef/
|
698
|
-
- lib/chef/
|
699
|
-
- lib/chef/
|
700
|
-
- lib/chef/provider/
|
701
|
-
- lib/chef/provider/
|
702
|
-
- lib/chef/provider/
|
703
|
-
- lib/chef/provider/
|
704
|
-
- lib/chef/provider/
|
705
|
-
- lib/chef/provider/package/freebsd.rb
|
706
|
-
- lib/chef/provider/package/rpm.rb
|
724
|
+
- lib/chef/run_context.rb
|
725
|
+
- lib/chef/event_dispatch/base.rb
|
726
|
+
- lib/chef/event_dispatch/dispatcher.rb
|
727
|
+
- lib/chef/resource.rb
|
728
|
+
- lib/chef/reserved_names.rb
|
729
|
+
- lib/chef/cookbook_loader.rb
|
730
|
+
- lib/chef/data_bag_item.rb
|
731
|
+
- lib/chef/cookbook_site_streaming_uploader.rb
|
732
|
+
- lib/chef/resource_platform_map.rb
|
733
|
+
- lib/chef/role.rb
|
734
|
+
- lib/chef/provider/file.rb
|
735
|
+
- lib/chef/provider/http_request.rb
|
736
|
+
- lib/chef/provider/route.rb
|
737
|
+
- lib/chef/provider/ruby_block.rb
|
738
|
+
- lib/chef/provider/directory.rb
|
707
739
|
- lib/chef/provider/breakpoint.rb
|
708
|
-
- lib/chef/provider/
|
709
|
-
- lib/chef/provider/
|
710
|
-
- lib/chef/provider/service/arch.rb
|
711
|
-
- lib/chef/provider/service/solaris.rb
|
712
|
-
- lib/chef/provider/service/windows.rb
|
713
|
-
- lib/chef/provider/service/systemd.rb
|
714
|
-
- lib/chef/provider/service/upstart.rb
|
715
|
-
- lib/chef/provider/service/invokercd.rb
|
716
|
-
- lib/chef/provider/service/redhat.rb
|
717
|
-
- lib/chef/provider/service/simple.rb
|
718
|
-
- lib/chef/provider/service/macosx.rb
|
719
|
-
- lib/chef/provider/service/debian.rb
|
720
|
-
- lib/chef/provider/service/gentoo.rb
|
721
|
-
- lib/chef/provider/service/insserv.rb
|
722
|
-
- lib/chef/provider/service/freebsd.rb
|
723
|
-
- lib/chef/provider/service/init.rb
|
724
|
-
- lib/chef/provider/mount/windows.rb
|
725
|
-
- lib/chef/provider/mount/mount.rb
|
726
|
-
- lib/chef/provider/deploy/revision.rb
|
727
|
-
- lib/chef/provider/deploy/timestamped.rb
|
728
|
-
- lib/chef/provider/template.rb
|
729
|
-
- lib/chef/provider/git.rb
|
740
|
+
- lib/chef/provider/subversion.rb
|
741
|
+
- lib/chef/provider/env.rb
|
730
742
|
- lib/chef/provider/link.rb
|
731
|
-
- lib/chef/provider/
|
732
|
-
- lib/chef/provider/
|
733
|
-
- lib/chef/provider/remote_file.rb
|
734
|
-
- lib/chef/provider/user.rb
|
735
|
-
- lib/chef/provider/directory.rb
|
736
|
-
- lib/chef/provider/cookbook_file.rb
|
737
|
-
- lib/chef/provider/ruby_block.rb
|
738
|
-
- lib/chef/provider/env/windows.rb
|
743
|
+
- lib/chef/provider/deploy/timestamped.rb
|
744
|
+
- lib/chef/provider/deploy/revision.rb
|
739
745
|
- lib/chef/provider/script.rb
|
740
|
-
- lib/chef/provider/env.rb
|
741
|
-
- lib/chef/provider/http_request.rb
|
742
|
-
- lib/chef/provider/group/gpasswd.rb
|
743
|
-
- lib/chef/provider/group/windows.rb
|
744
|
-
- lib/chef/provider/group/dscl.rb
|
745
|
-
- lib/chef/provider/group/suse.rb
|
746
|
-
- lib/chef/provider/group/usermod.rb
|
747
|
-
- lib/chef/provider/group/aix.rb
|
748
|
-
- lib/chef/provider/group/groupadd.rb
|
749
|
-
- lib/chef/provider/group/pw.rb
|
750
|
-
- lib/chef/provider/erl_call.rb
|
751
|
-
- lib/chef/provider/mdadm.rb
|
752
746
|
- lib/chef/provider/log.rb
|
753
|
-
- lib/chef/provider/
|
754
|
-
- lib/chef/provider/file.rb
|
755
|
-
- lib/chef/provider/cron.rb
|
756
|
-
- lib/chef/provider/mount.rb
|
747
|
+
- lib/chef/provider/remote_directory.rb
|
757
748
|
- lib/chef/provider/user/useradd.rb
|
758
749
|
- lib/chef/provider/user/windows.rb
|
759
750
|
- lib/chef/provider/user/dscl.rb
|
760
751
|
- lib/chef/provider/user/pw.rb
|
761
|
-
- lib/chef/provider/
|
762
|
-
- lib/chef/provider/
|
763
|
-
- lib/chef/provider/
|
752
|
+
- lib/chef/provider/erl_call.rb
|
753
|
+
- lib/chef/provider/mount/windows.rb
|
754
|
+
- lib/chef/provider/mount/mount.rb
|
764
755
|
- lib/chef/provider/ifconfig.rb
|
756
|
+
- lib/chef/provider/cron/solaris.rb
|
757
|
+
- lib/chef/provider/service/init.rb
|
758
|
+
- lib/chef/provider/service/insserv.rb
|
759
|
+
- lib/chef/provider/service/arch.rb
|
760
|
+
- lib/chef/provider/service/upstart.rb
|
761
|
+
- lib/chef/provider/service/systemd.rb
|
762
|
+
- lib/chef/provider/service/simple.rb
|
763
|
+
- lib/chef/provider/service/solaris.rb
|
764
|
+
- lib/chef/provider/service/windows.rb
|
765
|
+
- lib/chef/provider/service/redhat.rb
|
766
|
+
- lib/chef/provider/service/invokercd.rb
|
767
|
+
- lib/chef/provider/service/debian.rb
|
768
|
+
- lib/chef/provider/service/freebsd.rb
|
769
|
+
- lib/chef/provider/service/macosx.rb
|
770
|
+
- lib/chef/provider/service/gentoo.rb
|
765
771
|
- lib/chef/provider/group.rb
|
766
|
-
- lib/chef/
|
767
|
-
- lib/chef/
|
768
|
-
- lib/chef/
|
769
|
-
- lib/chef/
|
770
|
-
- lib/chef/
|
771
|
-
- lib/chef/
|
772
|
-
- lib/chef/
|
773
|
-
- lib/chef/
|
774
|
-
- lib/chef/
|
775
|
-
- lib/chef/
|
776
|
-
- lib/chef/
|
777
|
-
- lib/chef/
|
778
|
-
- lib/chef/
|
779
|
-
- lib/chef/
|
780
|
-
- lib/chef/
|
781
|
-
- lib/chef/
|
782
|
-
- lib/chef/
|
783
|
-
- lib/chef/
|
784
|
-
- lib/chef/
|
785
|
-
- lib/chef/
|
786
|
-
- lib/chef/
|
787
|
-
- lib/chef/
|
788
|
-
- lib/chef/
|
789
|
-
- lib/chef/
|
790
|
-
- lib/chef/
|
791
|
-
- lib/chef/
|
792
|
-
- lib/chef/
|
793
|
-
- lib/chef/
|
794
|
-
- lib/chef/
|
795
|
-
- lib/chef/
|
796
|
-
- lib/chef/
|
797
|
-
- lib/chef/
|
798
|
-
- lib/chef/
|
799
|
-
- lib/chef/
|
800
|
-
- lib/chef/
|
801
|
-
- lib/chef/
|
802
|
-
- lib/chef/
|
803
|
-
- lib/chef/
|
804
|
-
- lib/chef/
|
805
|
-
- lib/chef/
|
806
|
-
- lib/chef/
|
807
|
-
- lib/chef/
|
808
|
-
- lib/chef/
|
809
|
-
- lib/chef/
|
810
|
-
- lib/chef/
|
811
|
-
- lib/chef/
|
812
|
-
- lib/chef/
|
813
|
-
- lib/chef/
|
814
|
-
- lib/chef/
|
815
|
-
- lib/chef/
|
816
|
-
- lib/chef/
|
817
|
-
- lib/chef/
|
818
|
-
- lib/chef/
|
819
|
-
- lib/chef/
|
820
|
-
- lib/chef/
|
821
|
-
- lib/chef/
|
822
|
-
- lib/chef/
|
823
|
-
- lib/chef/
|
772
|
+
- lib/chef/provider/remote_file.rb
|
773
|
+
- lib/chef/provider/template.rb
|
774
|
+
- lib/chef/provider/resource_update.rb
|
775
|
+
- lib/chef/provider/deploy.rb
|
776
|
+
- lib/chef/provider/env/windows.rb
|
777
|
+
- lib/chef/provider/mdadm.rb
|
778
|
+
- lib/chef/provider/mount.rb
|
779
|
+
- lib/chef/provider/package/pacman.rb
|
780
|
+
- lib/chef/provider/package/yum.rb
|
781
|
+
- lib/chef/provider/package/smartos.rb
|
782
|
+
- lib/chef/provider/package/easy_install.rb
|
783
|
+
- lib/chef/provider/package/solaris.rb
|
784
|
+
- lib/chef/provider/package/zypper.rb
|
785
|
+
- lib/chef/provider/package/dpkg.rb
|
786
|
+
- lib/chef/provider/package/rpm.rb
|
787
|
+
- lib/chef/provider/package/macports.rb
|
788
|
+
- lib/chef/provider/package/portage.rb
|
789
|
+
- lib/chef/provider/package/freebsd.rb
|
790
|
+
- lib/chef/provider/package/yum-dump.py
|
791
|
+
- lib/chef/provider/package/apt.rb
|
792
|
+
- lib/chef/provider/package/rubygems.rb
|
793
|
+
- lib/chef/provider/ohai.rb
|
794
|
+
- lib/chef/provider/user.rb
|
795
|
+
- lib/chef/provider/cookbook_file.rb
|
796
|
+
- lib/chef/provider/package.rb
|
797
|
+
- lib/chef/provider/git.rb
|
798
|
+
- lib/chef/provider/execute.rb
|
799
|
+
- lib/chef/provider/group/groupmod.rb
|
800
|
+
- lib/chef/provider/group/aix.rb
|
801
|
+
- lib/chef/provider/group/suse.rb
|
802
|
+
- lib/chef/provider/group/groupadd.rb
|
803
|
+
- lib/chef/provider/group/windows.rb
|
804
|
+
- lib/chef/provider/group/dscl.rb
|
805
|
+
- lib/chef/provider/group/usermod.rb
|
806
|
+
- lib/chef/provider/group/pw.rb
|
807
|
+
- lib/chef/provider/group/gpasswd.rb
|
808
|
+
- lib/chef/provider/service.rb
|
809
|
+
- lib/chef/provider/cron.rb
|
810
|
+
- lib/chef/search/query.rb
|
811
|
+
- lib/chef/webui_user.rb
|
812
|
+
- lib/chef/knife/data_bag_list.rb
|
813
|
+
- lib/chef/knife/node_show.rb
|
814
|
+
- lib/chef/knife/environment_edit.rb
|
815
|
+
- lib/chef/knife/tag_create.rb
|
816
|
+
- lib/chef/knife/environment_from_file.rb
|
817
|
+
- lib/chef/knife/cookbook_test.rb
|
818
|
+
- lib/chef/knife/tag_list.rb
|
819
|
+
- lib/chef/knife/help.rb
|
820
|
+
- lib/chef/knife/role_show.rb
|
821
|
+
- lib/chef/knife/cookbook_site_unshare.rb
|
822
|
+
- lib/chef/knife/node_list.rb
|
823
|
+
- lib/chef/knife/role_create.rb
|
824
|
+
- lib/chef/knife/data_bag_delete.rb
|
825
|
+
- lib/chef/knife/node_from_file.rb
|
826
|
+
- lib/chef/knife/client_create.rb
|
827
|
+
- lib/chef/knife/client_edit.rb
|
828
|
+
- lib/chef/knife/client_list.rb
|
829
|
+
- lib/chef/knife/client_reregister.rb
|
830
|
+
- lib/chef/knife/client_show.rb
|
831
|
+
- lib/chef/knife/environment_create.rb
|
832
|
+
- lib/chef/knife/configure_client.rb
|
833
|
+
- lib/chef/knife/cookbook_site_vendor.rb
|
834
|
+
- lib/chef/knife/exec.rb
|
835
|
+
- lib/chef/knife/configure.rb
|
836
|
+
- lib/chef/knife/cookbook_site_download.rb
|
837
|
+
- lib/chef/knife/index_rebuild.rb
|
838
|
+
- lib/chef/knife/tag_delete.rb
|
839
|
+
- lib/chef/knife/role_list.rb
|
840
|
+
- lib/chef/knife/cookbook_list.rb
|
841
|
+
- lib/chef/knife/ssh.rb
|
842
|
+
- lib/chef/knife/data_bag_create.rb
|
843
|
+
- lib/chef/knife/environment_show.rb
|
844
|
+
- lib/chef/knife/cookbook_site_list.rb
|
845
|
+
- lib/chef/knife/environment_list.rb
|
846
|
+
- lib/chef/knife/cookbook_delete.rb
|
847
|
+
- lib/chef/knife/role_from_file.rb
|
848
|
+
- lib/chef/knife/cookbook_bulk_delete.rb
|
849
|
+
- lib/chef/knife/data_bag_show.rb
|
850
|
+
- lib/chef/knife/node_edit.rb
|
851
|
+
- lib/chef/knife/help_topics.rb
|
852
|
+
- lib/chef/knife/environment_delete.rb
|
853
|
+
- lib/chef/knife/data_bag_edit.rb
|
854
|
+
- lib/chef/knife/cookbook_show.rb
|
855
|
+
- lib/chef/knife/cookbook_site_share.rb
|
856
|
+
- lib/chef/knife/cookbook_metadata_from_file.rb
|
857
|
+
- lib/chef/knife/core/bootstrap_context.rb
|
858
|
+
- lib/chef/knife/core/cookbook_scm_repo.rb
|
859
|
+
- lib/chef/knife/core/object_loader.rb
|
860
|
+
- lib/chef/knife/core/node_presenter.rb
|
861
|
+
- lib/chef/knife/core/text_formatter.rb
|
862
|
+
- lib/chef/knife/core/ui.rb
|
863
|
+
- lib/chef/knife/core/node_editor.rb
|
864
|
+
- lib/chef/knife/core/subcommand_loader.rb
|
865
|
+
- lib/chef/knife/core/generic_presenter.rb
|
866
|
+
- lib/chef/knife/cookbook_site_install.rb
|
867
|
+
- lib/chef/knife/node_run_list_add.rb
|
868
|
+
- lib/chef/knife/bootstrap/archlinux-gems.erb
|
869
|
+
- lib/chef/knife/bootstrap/ubuntu10.04-apt.erb
|
870
|
+
- lib/chef/knife/bootstrap/fedora13-gems.erb
|
871
|
+
- lib/chef/knife/bootstrap/ubuntu10.04-gems.erb
|
872
|
+
- lib/chef/knife/bootstrap/centos5-gems.erb
|
873
|
+
- lib/chef/knife/bootstrap/chef-full.erb
|
874
|
+
- lib/chef/knife/bootstrap/ubuntu12.04-gems.erb
|
875
|
+
- lib/chef/knife/data_bag_from_file.rb
|
876
|
+
- lib/chef/knife/cookbook_download.rb
|
877
|
+
- lib/chef/knife/node_create.rb
|
878
|
+
- lib/chef/knife/client_delete.rb
|
879
|
+
- lib/chef/knife/cookbook_site_show.rb
|
880
|
+
- lib/chef/knife/node_run_list_remove.rb
|
881
|
+
- lib/chef/knife/bootstrap.rb
|
882
|
+
- lib/chef/knife/cookbook_upload.rb
|
883
|
+
- lib/chef/knife/status.rb
|
884
|
+
- lib/chef/knife/cookbook_create.rb
|
885
|
+
- lib/chef/knife/role_bulk_delete.rb
|
886
|
+
- lib/chef/knife/cookbook_metadata.rb
|
887
|
+
- lib/chef/knife/cookbook_site_search.rb
|
888
|
+
- lib/chef/knife/node_bulk_delete.rb
|
889
|
+
- lib/chef/knife/role_edit.rb
|
890
|
+
- lib/chef/knife/role_delete.rb
|
891
|
+
- lib/chef/knife/recipe_list.rb
|
892
|
+
- lib/chef/knife/node_delete.rb
|
893
|
+
- lib/chef/knife/search.rb
|
894
|
+
- lib/chef/knife/client_bulk_delete.rb
|
824
895
|
- lib/chef/api_client.rb
|
825
|
-
- lib/chef/mixins.rb
|
826
|
-
- lib/chef/log.rb
|
827
|
-
- lib/chef/resource_definition_list.rb
|
828
|
-
- lib/chef/resource_collection.rb
|
829
|
-
- lib/chef/nil_argument.rb
|
830
|
-
- lib/chef/run_context.rb
|
831
|
-
- lib/chef/environment.rb
|
832
|
-
- lib/chef/platform.rb
|
833
|
-
- lib/chef/run_list/versioned_recipe_list.rb
|
834
|
-
- lib/chef/run_list/run_list_expansion.rb
|
835
|
-
- lib/chef/run_list/run_list_item.rb
|
836
|
-
- lib/chef/cookbook/file_vendor.rb
|
837
|
-
- lib/chef/cookbook/cookbook_version_loader.rb
|
838
|
-
- lib/chef/cookbook/metadata.rb
|
839
|
-
- lib/chef/cookbook/syntax_check.rb
|
840
|
-
- lib/chef/cookbook/remote_file_vendor.rb
|
841
|
-
- lib/chef/cookbook/cookbook_collection.rb
|
842
|
-
- lib/chef/cookbook/file_system_file_vendor.rb
|
843
|
-
- lib/chef/cookbook/chefignore.rb
|
844
|
-
- lib/chef/cookbook_version.rb
|
845
|
-
- lib/chef/run_list.rb
|
846
|
-
- lib/chef/provider.rb
|
847
|
-
- lib/chef/resource/subversion.rb
|
848
|
-
- lib/chef/resource/rpm_package.rb
|
849
|
-
- lib/chef/resource/gem_package.rb
|
850
|
-
- lib/chef/resource/easy_install_package.rb
|
851
|
-
- lib/chef/resource/breakpoint.rb
|
852
|
-
- lib/chef/resource/conditional.rb
|
853
|
-
- lib/chef/resource/execute.rb
|
854
|
-
- lib/chef/resource/ohai.rb
|
855
896
|
- lib/chef/resource/timestamped_deploy.rb
|
856
|
-
- lib/chef/resource/
|
897
|
+
- lib/chef/resource/file.rb
|
898
|
+
- lib/chef/resource/http_request.rb
|
857
899
|
- lib/chef/resource/chef_gem.rb
|
858
|
-
- lib/chef/resource/
|
859
|
-
- lib/chef/resource/
|
900
|
+
- lib/chef/resource/route.rb
|
901
|
+
- lib/chef/resource/ruby_block.rb
|
902
|
+
- lib/chef/resource/directory.rb
|
903
|
+
- lib/chef/resource/deploy_revision.rb
|
904
|
+
- lib/chef/resource/ruby.rb
|
905
|
+
- lib/chef/resource/bash.rb
|
906
|
+
- lib/chef/resource/breakpoint.rb
|
907
|
+
- lib/chef/resource/conditional.rb
|
908
|
+
- lib/chef/resource/subversion.rb
|
909
|
+
- lib/chef/resource/env.rb
|
860
910
|
- lib/chef/resource/link.rb
|
861
911
|
- lib/chef/resource/perl.rb
|
862
|
-
- lib/chef/resource/pacman_package.rb
|
863
912
|
- lib/chef/resource/yum_package.rb
|
913
|
+
- lib/chef/resource/csh.rb
|
864
914
|
- lib/chef/resource/smartos_package.rb
|
865
|
-
- lib/chef/resource/
|
866
|
-
- lib/chef/resource/
|
867
|
-
- lib/chef/resource/
|
915
|
+
- lib/chef/resource/pacman_package.rb
|
916
|
+
- lib/chef/resource/script.rb
|
917
|
+
- lib/chef/resource/log.rb
|
868
918
|
- lib/chef/resource/remote_directory.rb
|
869
|
-
- lib/chef/resource/
|
870
|
-
- lib/chef/resource/
|
871
|
-
- lib/chef/resource/
|
872
|
-
- lib/chef/resource/cookbook_file.rb
|
873
|
-
- lib/chef/resource/ruby_block.rb
|
919
|
+
- lib/chef/resource/erl_call.rb
|
920
|
+
- lib/chef/resource/dpkg_package.rb
|
921
|
+
- lib/chef/resource/gem_package.rb
|
874
922
|
- lib/chef/resource/macports_package.rb
|
875
|
-
- lib/chef/resource/python.rb
|
876
|
-
- lib/chef/resource/freebsd_package.rb
|
877
|
-
- lib/chef/resource/script.rb
|
878
|
-
- lib/chef/resource/env.rb
|
879
923
|
- lib/chef/resource/scm.rb
|
880
|
-
- lib/chef/resource/
|
881
|
-
- lib/chef/resource/
|
882
|
-
- lib/chef/resource/
|
883
|
-
- lib/chef/resource/
|
924
|
+
- lib/chef/resource/ifconfig.rb
|
925
|
+
- lib/chef/resource/group.rb
|
926
|
+
- lib/chef/resource/remote_file.rb
|
927
|
+
- lib/chef/resource/template.rb
|
928
|
+
- lib/chef/resource/easy_install_package.rb
|
929
|
+
- lib/chef/resource/python.rb
|
884
930
|
- lib/chef/resource/deploy.rb
|
885
|
-
- lib/chef/resource/
|
886
|
-
- lib/chef/resource/cron.rb
|
887
|
-
- lib/chef/resource/portage_package.rb
|
888
|
-
- lib/chef/resource/ruby.rb
|
931
|
+
- lib/chef/resource/mdadm.rb
|
889
932
|
- lib/chef/resource/mount.rb
|
890
|
-
- lib/chef/resource/
|
891
|
-
- lib/chef/resource/
|
933
|
+
- lib/chef/resource/solaris_package.rb
|
934
|
+
- lib/chef/resource/ohai.rb
|
935
|
+
- lib/chef/resource/apt_package.rb
|
936
|
+
- lib/chef/resource/user.rb
|
937
|
+
- lib/chef/resource/freebsd_package.rb
|
938
|
+
- lib/chef/resource/cookbook_file.rb
|
892
939
|
- lib/chef/resource/package.rb
|
893
|
-
- lib/chef/resource/
|
894
|
-
- lib/chef/resource/
|
895
|
-
- lib/chef/resource/
|
896
|
-
- lib/chef/resource/
|
897
|
-
- lib/chef/
|
898
|
-
- lib/chef/
|
899
|
-
- lib/chef/
|
900
|
-
- lib/chef/
|
901
|
-
- lib/chef/
|
902
|
-
- lib/chef/
|
903
|
-
- lib/chef/
|
904
|
-
-
|
905
|
-
-
|
906
|
-
-
|
907
|
-
-
|
908
|
-
-
|
909
|
-
-
|
910
|
-
-
|
911
|
-
-
|
912
|
-
-
|
913
|
-
-
|
914
|
-
-
|
915
|
-
-
|
916
|
-
-
|
917
|
-
-
|
918
|
-
-
|
919
|
-
-
|
920
|
-
-
|
921
|
-
-
|
922
|
-
-
|
923
|
-
-
|
924
|
-
-
|
925
|
-
-
|
926
|
-
-
|
940
|
+
- lib/chef/resource/git.rb
|
941
|
+
- lib/chef/resource/rpm_package.rb
|
942
|
+
- lib/chef/resource/execute.rb
|
943
|
+
- lib/chef/resource/service.rb
|
944
|
+
- lib/chef/resource/cron.rb
|
945
|
+
- lib/chef/resource/portage_package.rb
|
946
|
+
- lib/chef/application/windows_service.rb
|
947
|
+
- lib/chef/application/knife.rb
|
948
|
+
- lib/chef/application/solo.rb
|
949
|
+
- lib/chef/application/client.rb
|
950
|
+
- lib/chef/application/agent.rb
|
951
|
+
- tasks/rspec.rb
|
952
|
+
- spec/unit/data_bag_spec.rb
|
953
|
+
- spec/unit/version_class_spec.rb
|
954
|
+
- spec/unit/resource_collection_spec.rb
|
955
|
+
- spec/unit/environment_spec.rb
|
956
|
+
- spec/unit/config_spec.rb
|
957
|
+
- spec/unit/resource_platform_map_spec.rb
|
958
|
+
- spec/unit/resource_collection/stepable_iterator_spec.rb
|
959
|
+
- spec/unit/rest/auth_credentials_spec.rb
|
960
|
+
- spec/unit/shef/shef_ext_spec.rb
|
961
|
+
- spec/unit/shef/model_wrapper_spec.rb
|
962
|
+
- spec/unit/shef/shef_session_spec.rb
|
963
|
+
- spec/unit/api_client_spec.rb
|
964
|
+
- spec/unit/knife_spec.rb
|
965
|
+
- spec/unit/webui_user_spec.rb
|
966
|
+
- spec/unit/node_spec.rb
|
967
|
+
- spec/unit/cookbook_version_spec.rb
|
968
|
+
- spec/unit/lwrp_spec.rb
|
969
|
+
- spec/unit/exceptions_spec.rb
|
970
|
+
- spec/unit/provider_spec.rb
|
971
|
+
- spec/unit/file_cache_spec.rb
|
972
|
+
- spec/unit/checksum/storage/filesystem_spec.rb
|
973
|
+
- spec/unit/client_spec.rb
|
974
|
+
- spec/unit/resource_spec.rb
|
975
|
+
- spec/unit/monkey_patches/string_spec.rb
|
976
|
+
- spec/unit/solr_query/query_transform_spec.rb
|
977
|
+
- spec/unit/solr_query/solr_http_request_spec.rb
|
978
|
+
- spec/unit/handler/json_file_spec.rb
|
979
|
+
- spec/unit/cookbook_loader_spec.rb
|
980
|
+
- spec/unit/log_spec.rb
|
981
|
+
- spec/unit/formatters/error_inspectors/run_list_expansion_error_inspector_spec.rb
|
982
|
+
- spec/unit/formatters/error_inspectors/resource_failure_inspector_spec.rb
|
983
|
+
- spec/unit/formatters/error_inspectors/cookbook_resolve_error_inspector_spec.rb
|
984
|
+
- spec/unit/formatters/error_inspectors/compile_error_inspector_spec.rb
|
985
|
+
- spec/unit/formatters/error_inspectors/node_load_error_inspector_spec.rb
|
986
|
+
- spec/unit/formatters/error_inspectors/cookbook_sync_error_inspector_spec.rb
|
987
|
+
- spec/unit/formatters/error_inspectors/registration_error_inspector_spec.rb
|
988
|
+
- spec/unit/run_list/run_list_item_spec.rb
|
989
|
+
- spec/unit/run_list/versioned_recipe_list_spec.rb
|
990
|
+
- spec/unit/run_list/run_list_expansion_spec.rb
|
991
|
+
- spec/unit/encrypted_data_bag_item_spec.rb
|
992
|
+
- spec/unit/application_spec.rb
|
993
|
+
- spec/unit/recipe_spec.rb
|
994
|
+
- spec/unit/cookbook_manifest_spec.rb
|
995
|
+
- spec/unit/resource_reporter_spec.rb
|
996
|
+
- spec/unit/run_context_spec.rb
|
997
|
+
- spec/unit/openid_registration_spec.rb
|
998
|
+
- spec/unit/solr_query_spec.rb
|
999
|
+
- spec/unit/node/attribute_spec.rb
|
1000
|
+
- spec/unit/scan_access_control_spec.rb
|
1001
|
+
- spec/unit/role_spec.rb
|
1002
|
+
- spec/unit/platform_spec.rb
|
1003
|
+
- spec/unit/mixin/convert_to_class_name_spec.rb
|
1004
|
+
- spec/unit/mixin/path_sanity_spec.rb
|
1005
|
+
- spec/unit/mixin/params_validate_spec.rb
|
1006
|
+
- spec/unit/mixin/xml_escape_spec.rb
|
1007
|
+
- spec/unit/mixin/command_spec.rb
|
1008
|
+
- spec/unit/mixin/deep_merge_spec.rb
|
1009
|
+
- spec/unit/mixin/template_spec.rb
|
1010
|
+
- spec/unit/mixin/language_spec.rb
|
1011
|
+
- spec/unit/mixin/checksum_spec.rb
|
1012
|
+
- spec/unit/mixin/deprecation_spec.rb
|
1013
|
+
- spec/unit/mixin/enforce_ownership_and_permissions_spec.rb
|
1014
|
+
- spec/unit/mixin/securable_spec.rb
|
1015
|
+
- spec/unit/mixin/shell_out_spec.rb
|
1016
|
+
- spec/unit/resource_definition_spec.rb
|
1017
|
+
- spec/unit/checksum_spec.rb
|
1018
|
+
- spec/unit/handler_spec.rb
|
1019
|
+
- spec/unit/shef_spec.rb
|
1020
|
+
- spec/unit/cookbook/syntax_check_spec.rb
|
1021
|
+
- spec/unit/cookbook/metadata_spec.rb
|
1022
|
+
- spec/unit/cookbook/chefignore_spec.rb
|
1023
|
+
- spec/unit/cookbook/synchronizer_spec.rb
|
1024
|
+
- spec/unit/data_bag_item_spec.rb
|
1025
|
+
- spec/unit/util/file_edit_spec.rb
|
1026
|
+
- spec/unit/cookbook_spec.rb
|
1027
|
+
- spec/unit/version_constraint_spec.rb
|
1028
|
+
- spec/unit/certificate_spec.rb
|
1029
|
+
- spec/unit/index_queue_spec.rb
|
1030
|
+
- spec/unit/file_access_control_spec.rb
|
1031
|
+
- spec/unit/run_status_spec.rb
|
1032
|
+
- spec/unit/json_compat_spect.rb
|
1033
|
+
- spec/unit/mash_spec.rb
|
1034
|
+
- spec/unit/rest_spec.rb
|
1035
|
+
- spec/unit/couchdb_spec.rb
|
1036
|
+
- spec/unit/daemon_spec.rb
|
1037
|
+
- spec/unit/chef_spec.rb
|
1038
|
+
- spec/unit/provider/execute_spec.rb
|
1039
|
+
- spec/unit/provider/file_spec.rb
|
1040
|
+
- spec/unit/provider/user_spec.rb
|
1041
|
+
- spec/unit/provider/cookbook_file_spec.rb
|
1042
|
+
- spec/unit/provider/cron_spec.rb
|
1043
|
+
- spec/unit/provider/link_spec.rb
|
1044
|
+
- spec/unit/provider/mount_spec.rb
|
1045
|
+
- spec/unit/provider/remote_directory_spec.rb
|
1046
|
+
- spec/unit/provider/breakpoint_spec.rb
|
1047
|
+
- spec/unit/provider/git_spec.rb
|
1048
|
+
- spec/unit/provider/group_spec.rb
|
1049
|
+
- spec/unit/provider/http_request_spec.rb
|
1050
|
+
- spec/unit/provider/erl_call_spec.rb
|
1051
|
+
- spec/unit/provider/template_spec.rb
|
1052
|
+
- spec/unit/provider/deploy_spec.rb
|
1053
|
+
- spec/unit/provider/log_spec.rb
|
1054
|
+
- spec/unit/provider/route_spec.rb
|
1055
|
+
- spec/unit/provider/deploy/timestamped_spec.rb
|
1056
|
+
- spec/unit/provider/deploy/revision_spec.rb
|
1057
|
+
- spec/unit/provider/user/useradd_spec.rb
|
1058
|
+
- spec/unit/provider/user/dscl_spec.rb
|
1059
|
+
- spec/unit/provider/user/windows_spec.rb
|
1060
|
+
- spec/unit/provider/user/pw_spec.rb
|
1061
|
+
- spec/unit/provider/mount/mount_spec.rb
|
1062
|
+
- spec/unit/provider/mount/windows_spec.rb
|
1063
|
+
- spec/unit/provider/package_spec.rb
|
1064
|
+
- spec/unit/provider/service_spec.rb
|
1065
|
+
- spec/unit/provider/ifconfig_spec.rb
|
1066
|
+
- spec/unit/provider/subversion_spec.rb
|
1067
|
+
- spec/unit/provider/cron/solaris_spec.rb
|
1068
|
+
- spec/unit/provider/service/init_service_spec.rb
|
1069
|
+
- spec/unit/provider/service/solaris_smf_service_spec.rb
|
1070
|
+
- spec/unit/provider/service/invokercd_service_spec.rb
|
1071
|
+
- spec/unit/provider/service/insserv_service_spec.rb
|
1072
|
+
- spec/unit/provider/service/gentoo_service_spec.rb
|
1073
|
+
- spec/unit/provider/service/redhat_spec.rb
|
1074
|
+
- spec/unit/provider/service/macosx_spec.rb
|
1075
|
+
- spec/unit/provider/service/debian_service_spec.rb
|
1076
|
+
- spec/unit/provider/service/simple_service_spec.rb
|
1077
|
+
- spec/unit/provider/service/arch_service_spec.rb
|
1078
|
+
- spec/unit/provider/service/upstart_service_spec.rb
|
1079
|
+
- spec/unit/provider/service/freebsd_service_spec.rb
|
1080
|
+
- spec/unit/provider/service/windows_spec.rb
|
1081
|
+
- spec/unit/provider/service/systemd_service_spec.rb
|
1082
|
+
- spec/unit/provider/script_spec.rb
|
1083
|
+
- spec/unit/provider/ohai_spec.rb
|
1084
|
+
- spec/unit/provider/env_spec.rb
|
1085
|
+
- spec/unit/provider/package/easy_install_spec.rb
|
1086
|
+
- spec/unit/provider/package/macports_spec.rb
|
1087
|
+
- spec/unit/provider/package/pacman_spec.rb
|
1088
|
+
- spec/unit/provider/package/rpm_spec.rb
|
1089
|
+
- spec/unit/provider/package/smartos_spec.rb
|
1090
|
+
- spec/unit/provider/package/apt_spec.rb
|
1091
|
+
- spec/unit/provider/package/freebsd_spec.rb
|
1092
|
+
- spec/unit/provider/package/zypper_spec.rb
|
1093
|
+
- spec/unit/provider/package/solaris_spec.rb
|
1094
|
+
- spec/unit/provider/package/rubygems_spec.rb
|
1095
|
+
- spec/unit/provider/package/dpkg_spec.rb
|
1096
|
+
- spec/unit/provider/package/yum_spec.rb
|
1097
|
+
- spec/unit/provider/package/portage_spec.rb
|
1098
|
+
- spec/unit/provider/directory_spec.rb
|
1099
|
+
- spec/unit/provider/remote_file_spec.rb
|
1100
|
+
- spec/unit/provider/mdadm_spec.rb
|
1101
|
+
- spec/unit/provider/ruby_block_spec.rb
|
1102
|
+
- spec/unit/provider/group/usermod_spec.rb
|
1103
|
+
- spec/unit/provider/group/gpasswd_spec.rb
|
1104
|
+
- spec/unit/provider/group/groupmod_spec.rb
|
1105
|
+
- spec/unit/provider/group/dscl_spec.rb
|
1106
|
+
- spec/unit/provider/group/groupadd_spec.rb
|
1107
|
+
- spec/unit/provider/group/windows_spec.rb
|
1108
|
+
- spec/unit/provider/group/pw_spec.rb
|
1109
|
+
- spec/unit/run_list_spec.rb
|
1110
|
+
- spec/unit/search/query_spec.rb
|
1111
|
+
- spec/unit/knife/client_show_spec.rb
|
1112
|
+
- spec/unit/knife/tag_create_spec.rb
|
1113
|
+
- spec/unit/knife/cookbook_delete_spec.rb
|
1114
|
+
- spec/unit/knife/cookbook_site_unshare_spec.rb
|
1115
|
+
- spec/unit/knife/role_bulk_delete_spec.rb
|
1116
|
+
- spec/unit/knife/cookbook_bulk_delete_spec.rb
|
1117
|
+
- spec/unit/knife/client_delete_spec.rb
|
1118
|
+
- spec/unit/knife/index_rebuild_spec.rb
|
1119
|
+
- spec/unit/knife/cookbook_metadata_spec.rb
|
1120
|
+
- spec/unit/knife/cookbook_site_install_spec.rb
|
1121
|
+
- spec/unit/knife/client_reregister_spec.rb
|
1122
|
+
- spec/unit/knife/data_bag_create_spec.rb
|
1123
|
+
- spec/unit/knife/knife_help.rb
|
1124
|
+
- spec/unit/knife/configure_spec.rb
|
1125
|
+
- spec/unit/knife/node_list_spec.rb
|
1126
|
+
- spec/unit/knife/cookbook_list_spec.rb
|
1127
|
+
- spec/unit/knife/role_delete_spec.rb
|
1128
|
+
- spec/unit/knife/environment_list_spec.rb
|
1129
|
+
- spec/unit/knife/client_bulk_delete_spec.rb
|
1130
|
+
- spec/unit/knife/environment_show_spec.rb
|
1131
|
+
- spec/unit/knife/tag_list_spec.rb
|
1132
|
+
- spec/unit/knife/node_edit_spec.rb
|
1133
|
+
- spec/unit/knife/node_bulk_delete_spec.rb
|
1134
|
+
- spec/unit/knife/role_edit_spec.rb
|
1135
|
+
- spec/unit/knife/client_list_spec.rb
|
1136
|
+
- spec/unit/knife/node_show_spec.rb
|
1137
|
+
- spec/unit/knife/cookbook_site_share_spec.rb
|
1138
|
+
- spec/unit/knife/cookbook_upload_spec.rb
|
1139
|
+
- spec/unit/knife/role_from_file_spec.rb
|
1140
|
+
- spec/unit/knife/node_run_list_add_spec.rb
|
1141
|
+
- spec/unit/knife/cookbook_site_download_spec.rb
|
1142
|
+
- spec/unit/knife/configure_client_spec.rb
|
1143
|
+
- spec/unit/knife/cookbook_metadata_from_file_spec.rb
|
1144
|
+
- spec/unit/knife/core/ui_spec.rb
|
1145
|
+
- spec/unit/knife/core/subcommand_loader_spec.rb
|
1146
|
+
- spec/unit/knife/core/object_loader_spec.rb
|
1147
|
+
- spec/unit/knife/core/cookbook_scm_repo_spec.rb
|
1148
|
+
- spec/unit/knife/core/bootstrap_context_spec.rb
|
1149
|
+
- spec/unit/knife/node_from_file_spec.rb
|
1150
|
+
- spec/unit/knife/config_file_selection_spec.rb
|
1151
|
+
- spec/unit/knife/client_edit_spec.rb
|
1152
|
+
- spec/unit/knife/environment_delete_spec.rb
|
1153
|
+
- spec/unit/knife/data_bag_from_file_spec.rb
|
1154
|
+
- spec/unit/knife/role_create_spec.rb
|
1155
|
+
- spec/unit/knife/bootstrap_spec.rb
|
1156
|
+
- spec/unit/knife/client_create_spec.rb
|
1157
|
+
- spec/unit/knife/cookbook_show_spec.rb
|
1158
|
+
- spec/unit/knife/data_bag_edit_spec.rb
|
1159
|
+
- spec/unit/knife/environment_from_file_spec.rb
|
1160
|
+
- spec/unit/knife/environment_edit_spec.rb
|
1161
|
+
- spec/unit/knife/cookbook_create_spec.rb
|
1162
|
+
- spec/unit/knife/cookbook_download_spec.rb
|
1163
|
+
- spec/unit/knife/role_list_spec.rb
|
1164
|
+
- spec/unit/knife/node_run_list_remove_spec.rb
|
1165
|
+
- spec/unit/knife/tag_delete_spec.rb
|
1166
|
+
- spec/unit/knife/node_delete_spec.rb
|
1167
|
+
- spec/unit/knife/cookbook_test_spec.rb
|
1168
|
+
- spec/unit/knife/data_bag_show_spec.rb
|
1169
|
+
- spec/unit/knife/environment_create_spec.rb
|
1170
|
+
- spec/unit/checksum_cache_spec.rb
|
1171
|
+
- spec/unit/runner_spec.rb
|
1172
|
+
- spec/unit/resource/timestamped_deploy_spec.rb
|
1173
|
+
- spec/unit/resource/execute_spec.rb
|
1174
|
+
- spec/unit/resource/file_spec.rb
|
1175
|
+
- spec/unit/resource/user_spec.rb
|
1176
|
+
- spec/unit/resource/cookbook_file_spec.rb
|
1177
|
+
- spec/unit/resource/cron_spec.rb
|
1178
|
+
- spec/unit/resource/easy_install_package_spec.rb
|
1179
|
+
- spec/unit/resource/link_spec.rb
|
1180
|
+
- spec/unit/resource/perl_spec.rb
|
1181
|
+
- spec/unit/resource/chef_gem_spec.rb
|
1182
|
+
- spec/unit/resource/mount_spec.rb
|
1183
|
+
- spec/unit/resource/remote_directory_spec.rb
|
1184
|
+
- spec/unit/resource/rpm_package_spec.rb
|
1185
|
+
- spec/unit/resource/macports_package_spec.rb
|
1186
|
+
- spec/unit/resource/breakpoint_spec.rb
|
1187
|
+
- spec/unit/resource/git_spec.rb
|
1188
|
+
- spec/unit/resource/freebsd_package_spec.rb
|
1189
|
+
- spec/unit/resource/group_spec.rb
|
1190
|
+
- spec/unit/resource/http_request_spec.rb
|
1191
|
+
- spec/unit/resource/smartos_package_spec.rb
|
1192
|
+
- spec/unit/resource/bash_spec.rb
|
1193
|
+
- spec/unit/resource/gem_package_spec.rb
|
1194
|
+
- spec/unit/resource/conditional_spec.rb
|
1195
|
+
- spec/unit/resource/erl_call_spec.rb
|
1196
|
+
- spec/unit/resource/template_spec.rb
|
1197
|
+
- spec/unit/resource/dpkg_package_spec.rb
|
1198
|
+
- spec/unit/resource/deploy_spec.rb
|
1199
|
+
- spec/unit/resource/log_spec.rb
|
1200
|
+
- spec/unit/resource/apt_package_spec.rb
|
1201
|
+
- spec/unit/resource/route_spec.rb
|
1202
|
+
- spec/unit/resource/deploy_revision_spec.rb
|
1203
|
+
- spec/unit/resource/python_spec.rb
|
1204
|
+
- spec/unit/resource/pacman_package_spec.rb
|
1205
|
+
- spec/unit/resource/portage_package_spec.rb
|
1206
|
+
- spec/unit/resource/package_spec.rb
|
1207
|
+
- spec/unit/resource/csh_spec.rb
|
1208
|
+
- spec/unit/resource/service_spec.rb
|
1209
|
+
- spec/unit/resource/subversion_spec.rb
|
1210
|
+
- spec/unit/resource/yum_package_spec.rb
|
1211
|
+
- spec/unit/resource/script_spec.rb
|
1212
|
+
- spec/unit/resource/ruby_spec.rb
|
1213
|
+
- spec/unit/resource/ohai_spec.rb
|
1214
|
+
- spec/unit/resource/scm_spec.rb
|
1215
|
+
- spec/unit/resource/env_spec.rb
|
1216
|
+
- spec/unit/resource/directory_spec.rb
|
1217
|
+
- spec/unit/resource/remote_file_spec.rb
|
1218
|
+
- spec/unit/resource/mdadm_spec.rb
|
1219
|
+
- spec/unit/resource/ruby_block_spec.rb
|
1220
|
+
- spec/unit/application/knife_spec.rb
|
1221
|
+
- spec/unit/application/server_spec.rb
|
1222
|
+
- spec/unit/application/solo_spec.rb
|
1223
|
+
- spec/unit/application/client_spec.rb
|
1224
|
+
- spec/unit/application/agent_spec.rb
|
1225
|
+
- spec/spec_helper.rb
|
1226
|
+
- spec/stress/win32/file_spec.rb
|
1227
|
+
- spec/stress/win32/security_spec.rb
|
1228
|
+
- spec/stress/win32/memory_spec.rb
|
1229
|
+
- spec/tiny_server.rb
|
1230
|
+
- spec/support/shared/unit/api_error_inspector.rb
|
1231
|
+
- spec/support/shared/functional/file_resource.rb
|
1232
|
+
- spec/support/shared/functional/directory_resource.rb
|
1233
|
+
- spec/support/shared/functional/knife.rb
|
1234
|
+
- spec/support/shared/functional/securable_resource.rb
|
1235
|
+
- spec/support/platforms/prof/win32.rb
|
1236
|
+
- spec/support/platforms/prof/gc.rb
|
1237
|
+
- spec/support/lib/chef/provider/snakeoil.rb
|
1238
|
+
- spec/support/lib/chef/provider/easy.rb
|
1239
|
+
- spec/support/lib/chef/resource/one_two_three_four.rb
|
1240
|
+
- spec/support/lib/chef/resource/cat.rb
|
1241
|
+
- spec/support/lib/chef/resource/zen_master.rb
|
1242
|
+
- spec/support/mock/platform.rb
|
1243
|
+
- spec/support/mock/constant.rb
|
1244
|
+
- spec/support/platform_helpers.rb
|
1245
|
+
- spec/support/chef_helpers.rb
|
1246
|
+
- spec/support/matchers/leak.rb
|
1247
|
+
- spec/data/definitions/test.rb
|
1248
|
+
- spec/data/templates/seattle.txt
|
1249
|
+
- spec/data/old_home_dir/my-dot-vim
|
1250
|
+
- spec/data/old_home_dir/my-dot-emacs
|
1251
|
+
- spec/data/metadata/quick_start/metadata.rb
|
1252
|
+
- spec/data/bad-config.rb
|
1253
|
+
- spec/data/run_context/cookbooks/test/definitions/new_animals.rb
|
1254
|
+
- spec/data/run_context/cookbooks/test/definitions/new_cat.rb
|
1255
|
+
- spec/data/run_context/cookbooks/test/attributes/george.rb
|
1256
|
+
- spec/data/run_context/cookbooks/test/recipes/two.rb
|
1257
|
+
- spec/data/run_context/cookbooks/test/recipes/one.rb
|
1258
|
+
- spec/data/run_context/cookbooks/test/recipes/default.rb
|
1259
|
+
- spec/data/run_context/nodes/run_context.rb
|
1260
|
+
- spec/data/environment-config.rb
|
1261
|
+
- spec/data/checksum/random.txt
|
1262
|
+
- spec/data/search_queries_to_transform.txt
|
1263
|
+
- spec/data/cookbooks/openldap/definitions/client.rb
|
1264
|
+
- spec/data/cookbooks/openldap/definitions/server.rb
|
1265
|
+
- spec/data/cookbooks/openldap/templates/default/test.erb
|
1266
|
+
- spec/data/cookbooks/openldap/templates/default/openldap_variable_stuff.conf.erb
|
1267
|
+
- spec/data/cookbooks/openldap/templates/default/openldap_stuff.conf.erb
|
1268
|
+
- spec/data/cookbooks/openldap/attributes/default.rb
|
1269
|
+
- spec/data/cookbooks/openldap/attributes/smokey.rb
|
1270
|
+
- spec/data/cookbooks/openldap/recipes/gigantor.rb
|
1271
|
+
- spec/data/cookbooks/openldap/recipes/one.rb
|
1272
|
+
- spec/data/cookbooks/openldap/recipes/default.rb
|
1273
|
+
- spec/data/cookbooks/openldap/files/default/remotedir/remote_dir_file1.txt
|
1274
|
+
- spec/data/cookbooks/openldap/files/default/remotedir/subdir_with_no_file_just_a_subsubdir/the_subsubdir/some_file.txt
|
1275
|
+
- spec/data/cookbooks/openldap/files/default/remotedir/remote_dir_file2.txt
|
1276
|
+
- spec/data/cookbooks/openldap/files/default/remotedir/remotesubdir/remote_subdir_file2.txt
|
1277
|
+
- spec/data/cookbooks/openldap/files/default/remotedir/remotesubdir/remote_subdir_file1.txt
|
1278
|
+
- spec/data/cookbooks/apache2/recipes/default.rb
|
1279
|
+
- spec/data/cookbooks/apache2/files/default/apache2_module_conf_generate.pl
|
1280
|
+
- spec/data/cookbooks/java/files/default/java.response
|
1281
|
+
- spec/data/cookbooks/borken/templates/default/borken.erb
|
1282
|
+
- spec/data/cookbooks/borken/recipes/default.rb
|
1283
|
+
- spec/data/cookbooks/chefignore
|
1284
|
+
- spec/data/big_json.json
|
1285
|
+
- spec/data/recipes/test.rb
|
1286
|
+
- spec/data/knife_subcommand/test_explicit_category.rb
|
1287
|
+
- spec/data/knife_subcommand/test_yourself.rb
|
1288
|
+
- spec/data/knife_subcommand/test_name_mapping.rb
|
1289
|
+
- spec/data/object_loader/environments/test.json
|
1290
|
+
- spec/data/object_loader/environments/test_json_class.json
|
1291
|
+
- spec/data/object_loader/environments/test.rb
|
1292
|
+
- spec/data/object_loader/roles/test.json
|
1293
|
+
- spec/data/object_loader/roles/test_json_class.json
|
1294
|
+
- spec/data/object_loader/roles/test.rb
|
1295
|
+
- spec/data/object_loader/nodes/test.json
|
1296
|
+
- spec/data/object_loader/nodes/test_json_class.json
|
1297
|
+
- spec/data/object_loader/nodes/test.rb
|
1298
|
+
- spec/data/gems/chef-integration-test-0.1.0.gem
|
1299
|
+
- spec/data/config.rb
|
1300
|
+
- spec/data/big_json_plus_one.json
|
1301
|
+
- spec/data/lwrp_override/resources/foo.rb
|
1302
|
+
- spec/data/lwrp_override/providers/buck_passer.rb
|
1303
|
+
- spec/data/cb_version_cookbooks/tatft/definitions/runit_service.rb
|
1304
|
+
- spec/data/cb_version_cookbooks/tatft/templates/default/configuration.erb
|
1305
|
+
- spec/data/cb_version_cookbooks/tatft/attributes/default.rb
|
1306
|
+
- spec/data/cb_version_cookbooks/tatft/libraries/ownage.rb
|
1307
|
+
- spec/data/cb_version_cookbooks/tatft/README.rdoc
|
1308
|
+
- spec/data/cb_version_cookbooks/tatft/recipes/default.rb
|
1309
|
+
- spec/data/cb_version_cookbooks/tatft/resources/lwr.rb
|
1310
|
+
- spec/data/cb_version_cookbooks/tatft/files/default/giant_blob.tgz
|
1311
|
+
- spec/data/cb_version_cookbooks/tatft/providers/lwp.rb
|
1312
|
+
- spec/data/remote_directory_data/remote_subdirectory/remote_subdir_file.txt
|
1313
|
+
- spec/data/remote_directory_data/remote_dir_file.txt
|
1314
|
+
- spec/data/knife-site-subcommands/plugins/knife/example_subcommand.rb
|
1315
|
+
- spec/data/bootstrap/test.erb
|
1316
|
+
- spec/data/bootstrap/test-hints.erb
|
1317
|
+
- spec/data/remote_file/nyan_cat.png
|
1318
|
+
- spec/data/nodes/test.example.com.rb
|
1319
|
+
- spec/data/nodes/default.rb
|
1320
|
+
- spec/data/nodes/test.rb
|
1321
|
+
- spec/data/ssl/private_key_with_whitespace.pem
|
1322
|
+
- spec/data/ssl/key.pem
|
1323
|
+
- spec/data/ssl/5e707473.0
|
1324
|
+
- spec/data/ssl/chef-rspec.key
|
1325
|
+
- spec/data/ssl/private_key.pem
|
1326
|
+
- spec/data/ssl/chef-rspec.cert
|
1327
|
+
- spec/data/fileedit/blank
|
1328
|
+
- spec/data/fileedit/hosts
|
1329
|
+
- spec/data/kitchen/openldap/definitions/drewbarrymore.rb
|
1330
|
+
- spec/data/kitchen/openldap/definitions/client.rb
|
1331
|
+
- spec/data/kitchen/openldap/attributes/default.rb
|
1332
|
+
- spec/data/kitchen/openldap/attributes/robinson.rb
|
1333
|
+
- spec/data/kitchen/openldap/recipes/ignoreme.rb
|
1334
|
+
- spec/data/kitchen/openldap/recipes/gigantor.rb
|
1335
|
+
- spec/data/kitchen/openldap/recipes/woot.rb
|
1336
|
+
- spec/data/kitchen/chefignore
|
1337
|
+
- spec/data/lwrp/resources_with_default_attributes/nodeattr.rb
|
1338
|
+
- spec/data/lwrp/resources/bar.rb
|
1339
|
+
- spec/data/lwrp/resources/foo.rb
|
1340
|
+
- spec/data/lwrp/providers/embedded_resource_accesses_providers_scope.rb
|
1341
|
+
- spec/data/lwrp/providers/paint_drying_watcher.rb
|
1342
|
+
- spec/data/lwrp/providers/buck_passer_2.rb
|
1343
|
+
- spec/data/lwrp/providers/thumb_twiddler.rb
|
1344
|
+
- spec/data/lwrp/providers/buck_passer.rb
|
1345
|
+
- spec/data/lwrp/providers/monkey_name_printer.rb
|
1346
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-api8ux-0
|
1347
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-t8g0sv-0
|
1348
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-6m8zdk-0
|
1349
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-pgsq76-0
|
1350
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-xi0l6h-0
|
1351
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-t7k1g-0
|
1352
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-kkbs85-0
|
1353
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-ahd2gq-0
|
1354
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-b0r1m1-0
|
1355
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-ufy6g3-0
|
1356
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-ory1ux-0
|
1357
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-ra8uim-0
|
1358
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-ivrl3y-0
|
1359
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-600hhz-0
|
1360
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-bfygsi-0
|
1361
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-el14l6-0
|
1362
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-x2d6j9-0
|
1363
|
+
- spec/rcov.opts
|
1364
|
+
- spec/functional/tiny_server_spec.rb
|
1365
|
+
- spec/functional/knife/cookbook_delete_spec.rb
|
1366
|
+
- spec/functional/knife/exec_spec.rb
|
1367
|
+
- spec/functional/knife/ssh_spec.rb
|
1368
|
+
- spec/functional/resource/file_spec.rb
|
1369
|
+
- spec/functional/resource/link_spec.rb
|
1370
|
+
- spec/functional/resource/remote_directory_spec.rb
|
1371
|
+
- spec/functional/resource/template_spec.rb
|
1372
|
+
- spec/functional/resource/directory_spec.rb
|
1373
|
+
- spec/functional/resource/remote_file_spec.rb
|
927
1374
|
- bin/chef-client
|
928
1375
|
- bin/chef-solo
|
929
1376
|
- bin/knife
|
@@ -948,12 +1395,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
948
1395
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
949
1396
|
none: false
|
950
1397
|
requirements:
|
951
|
-
- - "
|
1398
|
+
- - ">"
|
952
1399
|
- !ruby/object:Gem::Version
|
953
|
-
hash:
|
1400
|
+
hash: 25
|
954
1401
|
segments:
|
955
|
-
-
|
956
|
-
|
1402
|
+
- 1
|
1403
|
+
- 3
|
1404
|
+
- 1
|
1405
|
+
version: 1.3.1
|
957
1406
|
requirements: []
|
958
1407
|
|
959
1408
|
rubyforge_project:
|