chef 15.1.36-universal-mingw32 → 15.2.20-universal-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/knife +0 -0
- data/ext/win32-eventlog/Rakefile +1 -1
- data/lib/chef.rb +1 -2
- data/lib/chef/action_collection.rb +8 -0
- data/lib/chef/api_client.rb +2 -2
- data/lib/chef/api_client/registration.rb +8 -7
- data/lib/chef/api_client_v1.rb +2 -1
- data/lib/chef/application.rb +1 -0
- data/lib/chef/application/apply.rb +1 -1
- data/lib/chef/application/base.rb +440 -0
- data/lib/chef/application/client.rb +6 -389
- data/lib/chef/application/solo.rb +11 -258
- data/lib/chef/application/windows_service.rb +3 -3
- data/lib/chef/application/windows_service_manager.rb +3 -3
- data/lib/chef/blacklist.rb +1 -1
- data/lib/chef/chef_fs/chef_fs_data_store.rb +15 -7
- data/lib/chef/chef_fs/command_line.rb +6 -1
- data/lib/chef/chef_fs/config.rb +3 -2
- data/lib/chef/chef_fs/data_handler/container_data_handler.rb +1 -1
- data/lib/chef/chef_fs/data_handler/data_bag_item_data_handler.rb +1 -1
- data/lib/chef/chef_fs/data_handler/data_handler_base.rb +1 -1
- data/lib/chef/chef_fs/data_handler/organization_data_handler.rb +1 -1
- data/lib/chef/chef_fs/data_handler/policy_data_handler.rb +2 -2
- data/lib/chef/chef_fs/file_pattern.rb +13 -7
- data/lib/chef/chef_fs/file_system.rb +3 -2
- data/lib/chef/chef_fs/file_system/base_fs_object.rb +13 -6
- data/lib/chef/chef_fs/file_system/chef_server/chef_server_root_dir.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/cookbook_artifacts_dir.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/cookbook_dir.rb +8 -5
- data/lib/chef/chef_fs/file_system/chef_server/cookbook_file.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/cookbook_subdir.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/cookbooks_dir.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/data_bag_dir.rb +3 -2
- data/lib/chef/chef_fs/file_system/chef_server/environments_dir.rb +4 -2
- data/lib/chef/chef_fs/file_system/chef_server/policies_dir.rb +1 -0
- data/lib/chef/chef_fs/file_system/chef_server/rest_list_dir.rb +1 -0
- data/lib/chef/chef_fs/file_system/chef_server/versioned_cookbooks_dir.rb +1 -1
- data/lib/chef/chef_fs/file_system/memory/memory_dir.rb +1 -1
- data/lib/chef/chef_fs/file_system/repository/acl.rb +1 -1
- data/lib/chef/chef_fs/file_system/repository/base_file.rb +2 -1
- data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_cookbook_dir.rb +6 -2
- data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_cookbook_entry.rb +6 -4
- data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_root_dir.rb +6 -4
- data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_versioned_cookbook_dir.rb +1 -0
- data/lib/chef/chef_fs/file_system/repository/directory.rb +5 -1
- data/lib/chef/chef_fs/file_system/repository/file_system_entry.rb +4 -2
- data/lib/chef/chef_fs/file_system_cache.rb +1 -0
- data/lib/chef/chef_fs/parallelizer/parallel_enumerable.rb +2 -1
- data/lib/chef/chef_fs/path_utils.rb +3 -0
- data/lib/chef/client.rb +4 -2
- data/lib/chef/config.rb +1 -1
- data/lib/chef/cookbook/cookbook_version_loader.rb +6 -3
- data/lib/chef/cookbook/file_system_file_vendor.rb +1 -0
- data/lib/chef/cookbook/file_vendor.rb +1 -0
- data/lib/chef/cookbook/gem_installer.rb +1 -0
- data/lib/chef/cookbook/manifest_v0.rb +1 -0
- data/lib/chef/cookbook/metadata.rb +11 -9
- data/lib/chef/cookbook/remote_file_vendor.rb +3 -2
- data/lib/chef/cookbook/synchronizer.rb +6 -4
- data/lib/chef/cookbook/syntax_check.rb +4 -0
- data/lib/chef/cookbook_loader.rb +1 -0
- data/lib/chef/cookbook_manifest.rb +4 -2
- data/lib/chef/cookbook_site_streaming_uploader.rb +1 -1
- data/lib/chef/cookbook_uploader.rb +2 -2
- data/lib/chef/cookbook_version.rb +10 -9
- data/lib/chef/data_bag.rb +2 -1
- data/lib/chef/data_bag_item.rb +6 -3
- data/lib/chef/data_collector.rb +16 -8
- data/lib/chef/data_collector/run_end_message.rb +2 -0
- data/lib/chef/decorator.rb +5 -6
- data/lib/chef/deprecated.rb +1 -0
- data/lib/chef/dsl/data_query.rb +1 -1
- data/lib/chef/dsl/declare_resource.rb +2 -0
- data/lib/chef/dsl/platform_introspection.rb +3 -1
- data/lib/chef/encrypted_data_bag_item.rb +7 -4
- data/lib/chef/encrypted_data_bag_item/assertions.rb +1 -1
- data/lib/chef/encrypted_data_bag_item/check_encrypted.rb +1 -0
- data/lib/chef/encrypted_data_bag_item/decryptor.rb +4 -2
- data/lib/chef/encrypted_data_bag_item/encryptor.rb +1 -0
- data/lib/chef/environment.rb +7 -5
- data/lib/chef/event_dispatch/base.rb +86 -172
- data/lib/chef/event_dispatch/dispatcher.rb +2 -1
- data/lib/chef/event_loggers/base.rb +2 -1
- data/lib/chef/exceptions.rb +6 -7
- data/lib/chef/file_access_control/unix.rb +7 -4
- data/lib/chef/file_access_control/windows.rb +17 -8
- data/lib/chef/file_cache.rb +2 -1
- data/lib/chef/file_content_management/deploy.rb +2 -2
- data/lib/chef/formatters/base.rb +3 -4
- data/lib/chef/formatters/doc.rb +21 -33
- data/lib/chef/formatters/error_inspectors/cookbook_resolve_error_inspector.rb +3 -2
- data/lib/chef/formatters/error_inspectors/resource_failure_inspector.rb +3 -1
- data/lib/chef/formatters/indentable_output_stream.rb +3 -3
- data/lib/chef/formatters/minimal.rb +21 -42
- data/lib/chef/guard_interpreter/resource_guard_interpreter.rb +1 -1
- data/lib/chef/handler.rb +1 -2
- data/lib/chef/http.rb +23 -18
- data/lib/chef/http/api_versions.rb +1 -2
- data/lib/chef/http/auth_credentials.rb +1 -0
- data/lib/chef/http/basic_client.rb +1 -1
- data/lib/chef/http/decompressor.rb +1 -0
- data/lib/chef/http/json_output.rb +2 -1
- data/lib/chef/http/json_to_model_output.rb +1 -1
- data/lib/chef/http/remote_request_id.rb +1 -2
- data/lib/chef/http/socketless_chef_zero_client.rb +3 -2
- data/lib/chef/http/ssl_policies.rb +3 -0
- data/lib/chef/http/validate_content_length.rb +2 -2
- data/lib/chef/json_compat.rb +1 -1
- data/lib/chef/key.rb +8 -6
- data/lib/chef/knife.rb +6 -5
- data/lib/chef/knife/bootstrap.rb +19 -12
- data/lib/chef/knife/bootstrap/chef_vault_handler.rb +1 -0
- data/lib/chef/knife/bootstrap/client_builder.rb +1 -0
- data/lib/chef/knife/bootstrap/train_connector.rb +23 -17
- data/lib/chef/knife/client_bulk_delete.rb +4 -3
- data/lib/chef/knife/client_create.rb +13 -13
- data/lib/chef/knife/client_delete.rb +3 -3
- data/lib/chef/knife/config_get.rb +8 -8
- data/lib/chef/knife/config_list_profiles.rb +4 -4
- data/lib/chef/knife/cookbook_delete.rb +1 -1
- data/lib/chef/knife/cookbook_download.rb +12 -12
- data/lib/chef/knife/cookbook_show.rb +10 -10
- data/lib/chef/knife/cookbook_upload.rb +5 -5
- data/lib/chef/knife/core/bootstrap_context.rb +1 -1
- data/lib/chef/knife/core/cookbook_scm_repo.rb +1 -1
- data/lib/chef/knife/core/gem_glob_loader.rb +2 -2
- data/lib/chef/knife/core/generic_presenter.rb +4 -4
- data/lib/chef/knife/core/node_presenter.rb +17 -17
- data/lib/chef/knife/core/object_loader.rb +1 -1
- data/lib/chef/knife/core/status_presenter.rb +5 -5
- data/lib/chef/knife/core/subcommand_loader.rb +3 -2
- data/lib/chef/knife/core/text_formatter.rb +4 -4
- data/lib/chef/knife/core/ui.rb +9 -5
- data/lib/chef/knife/data_bag_create.rb +1 -0
- data/lib/chef/knife/data_bag_from_file.rb +1 -1
- data/lib/chef/knife/data_bag_secret_options.rb +13 -13
- data/lib/chef/knife/data_bag_show.rb +2 -2
- data/lib/chef/knife/deps.rb +6 -6
- data/lib/chef/knife/edit.rb +2 -2
- data/lib/chef/knife/environment_compare.rb +1 -0
- data/lib/chef/knife/environment_from_file.rb +3 -3
- data/lib/chef/knife/key_create_base.rb +12 -12
- data/lib/chef/knife/key_edit_base.rb +15 -15
- data/lib/chef/knife/key_list.rb +3 -1
- data/lib/chef/knife/key_list_base.rb +9 -9
- data/lib/chef/knife/list.rb +5 -5
- data/lib/chef/knife/node_bulk_delete.rb +1 -0
- data/lib/chef/knife/node_edit.rb +1 -1
- data/lib/chef/knife/node_environment_set.rb +1 -2
- data/lib/chef/knife/node_run_list_add.rb +2 -2
- data/lib/chef/knife/node_run_list_remove.rb +2 -2
- data/lib/chef/knife/node_run_list_set.rb +2 -2
- data/lib/chef/knife/null.rb +1 -2
- data/lib/chef/knife/role_bulk_delete.rb +1 -0
- data/lib/chef/knife/role_env_run_list_add.rb +2 -2
- data/lib/chef/knife/role_env_run_list_set.rb +2 -2
- data/lib/chef/knife/role_run_list_add.rb +2 -2
- data/lib/chef/knife/role_run_list_set.rb +2 -2
- data/lib/chef/knife/search.rb +4 -4
- data/lib/chef/knife/ssh.rb +13 -9
- data/lib/chef/knife/supermarket_download.rb +1 -1
- data/lib/chef/knife/supermarket_install.rb +5 -5
- data/lib/chef/knife/supermarket_list.rb +1 -1
- data/lib/chef/knife/supermarket_share.rb +3 -2
- data/lib/chef/knife/supermarket_show.rb +1 -1
- data/lib/chef/knife/supermarket_unshare.rb +1 -0
- data/lib/chef/knife/tag_delete.rb +1 -1
- data/lib/chef/knife/xargs.rb +2 -2
- data/lib/chef/log/syslog.rb +2 -2
- data/lib/chef/log/winevt.rb +1 -2
- data/lib/chef/mash.rb +2 -2
- data/lib/chef/mixin/api_version_request_handling.rb +1 -1
- data/lib/chef/mixin/checksum.rb +1 -0
- data/lib/chef/mixin/convert_to_class_name.rb +2 -1
- data/lib/chef/mixin/create_path.rb +2 -2
- data/lib/chef/mixin/deep_merge.rb +5 -5
- data/lib/chef/mixin/get_source_from_package.rb +1 -0
- data/lib/chef/mixin/homebrew_user.rb +2 -1
- data/lib/chef/mixin/openssl_helper.rb +10 -6
- data/lib/chef/mixin/params_validate.rb +21 -13
- data/lib/chef/mixin/powershell_out.rb +1 -1
- data/lib/chef/mixin/powershell_type_coercions.rb +2 -2
- data/lib/chef/mixin/properties.rb +13 -10
- data/lib/chef/mixin/securable.rb +3 -3
- data/lib/chef/mixin/shell_out.rb +1 -0
- data/lib/chef/mixin/template.rb +2 -1
- data/lib/chef/mixin/user_context.rb +1 -1
- data/lib/chef/mixin/which.rb +1 -0
- data/lib/chef/mixin/windows_architecture_helper.rb +4 -4
- data/lib/chef/mixin/windows_env_helper.rb +2 -2
- data/lib/chef/monkey_patches/net_http.rb +1 -1
- data/lib/chef/monkey_patches/webrick-utils.rb +6 -4
- data/lib/chef/node.rb +24 -17
- data/lib/chef/node/attribute.rb +122 -113
- data/lib/chef/node/attribute_collections.rb +1 -1
- data/lib/chef/node/common_api.rb +8 -2
- data/lib/chef/node/immutable_collections.rb +1 -1
- data/lib/chef/node/mixin/immutablize_array.rb +142 -142
- data/lib/chef/node/mixin/immutablize_hash.rb +131 -131
- data/lib/chef/node_map.rb +18 -3
- data/lib/chef/null_logger.rb +8 -16
- data/lib/chef/org.rb +4 -4
- data/lib/chef/platform/query_helpers.rb +3 -0
- data/lib/chef/platform/rebooter.rb +1 -1
- data/lib/chef/platform/service_helpers.rb +2 -2
- data/lib/chef/policy_builder/expand_node_object.rb +4 -4
- data/lib/chef/policy_builder/policyfile.rb +4 -4
- data/lib/chef/powershell.rb +2 -0
- data/lib/chef/property.rb +7 -4
- data/lib/chef/provider.rb +9 -12
- data/lib/chef/provider/apt_preference.rb +1 -2
- data/lib/chef/provider/apt_repository.rb +1 -2
- data/lib/chef/provider/apt_update.rb +2 -3
- data/lib/chef/provider/cookbook_file.rb +1 -0
- data/lib/chef/provider/cron.rb +6 -5
- data/lib/chef/provider/cron/unix.rb +1 -0
- data/lib/chef/provider/dsc_resource.rb +2 -3
- data/lib/chef/provider/dsc_script.rb +2 -2
- data/lib/chef/provider/execute.rb +1 -1
- data/lib/chef/provider/file.rb +5 -3
- data/lib/chef/provider/git.rb +4 -3
- data/lib/chef/provider/group.rb +7 -3
- data/lib/chef/provider/group/aix.rb +2 -0
- data/lib/chef/provider/group/dscl.rb +6 -3
- data/lib/chef/provider/group/groupadd.rb +1 -0
- data/lib/chef/provider/group/groupmod.rb +1 -1
- data/lib/chef/provider/group/pw.rb +3 -3
- data/lib/chef/provider/group/suse.rb +2 -2
- data/lib/chef/provider/group/usermod.rb +1 -0
- data/lib/chef/provider/group/windows.rb +1 -1
- data/lib/chef/provider/http_request.rb +1 -1
- data/lib/chef/provider/ifconfig.rb +12 -6
- data/lib/chef/provider/ifconfig/aix.rb +1 -0
- data/lib/chef/provider/ifconfig/debian.rb +1 -0
- data/lib/chef/provider/launchd.rb +16 -13
- data/lib/chef/provider/lwrp_base.rb +1 -2
- data/lib/chef/provider/mount.rb +1 -0
- data/lib/chef/provider/mount/aix.rb +6 -6
- data/lib/chef/provider/mount/mount.rb +5 -4
- data/lib/chef/provider/mount/solaris.rb +4 -4
- data/lib/chef/provider/package.rb +9 -6
- data/lib/chef/provider/package/apt.rb +4 -3
- data/lib/chef/provider/package/bff.rb +1 -0
- data/lib/chef/provider/package/cab.rb +4 -2
- data/lib/chef/provider/package/chocolatey.rb +5 -2
- data/lib/chef/provider/package/dnf.rb +1 -1
- data/lib/chef/provider/package/dnf/dnf_helper.py +15 -1
- data/lib/chef/provider/package/dnf/python_helper.rb +1 -0
- data/lib/chef/provider/package/dpkg.rb +4 -4
- data/lib/chef/provider/package/freebsd/base.rb +3 -2
- data/lib/chef/provider/package/freebsd/pkgng.rb +2 -2
- data/lib/chef/provider/package/homebrew.rb +1 -1
- data/lib/chef/provider/package/macports.rb +1 -0
- data/lib/chef/provider/package/msu.rb +3 -1
- data/lib/chef/provider/package/openbsd.rb +1 -1
- data/lib/chef/provider/package/paludis.rb +1 -0
- data/lib/chef/provider/package/portage.rb +2 -2
- data/lib/chef/provider/package/powershell.rb +3 -2
- data/lib/chef/provider/package/rpm.rb +1 -0
- data/lib/chef/provider/package/rubygems.rb +5 -3
- data/lib/chef/provider/package/smartos.rb +1 -0
- data/lib/chef/provider/package/snap.rb +5 -1
- data/lib/chef/provider/package/solaris.rb +2 -0
- data/lib/chef/provider/package/windows/exe.rb +5 -5
- data/lib/chef/provider/package/windows/msi.rb +8 -7
- data/lib/chef/provider/package/windows/registry_uninstall_entry.rb +1 -0
- data/lib/chef/provider/package/yum.rb +5 -2
- data/lib/chef/provider/package/yum/python_helper.rb +2 -1
- data/lib/chef/provider/package/zypper.rb +1 -1
- data/lib/chef/provider/reboot.rb +1 -1
- data/lib/chef/provider/registry_key.rb +2 -2
- data/lib/chef/provider/remote_directory.rb +1 -1
- data/lib/chef/provider/remote_file.rb +10 -9
- data/lib/chef/provider/remote_file/fetcher.rb +3 -2
- data/lib/chef/provider/remote_file/local_file.rb +1 -1
- data/lib/chef/provider/route.rb +4 -2
- data/lib/chef/provider/service/aixinit.rb +1 -1
- data/lib/chef/provider/service/arch.rb +2 -1
- data/lib/chef/provider/service/debian.rb +12 -11
- data/lib/chef/provider/service/freebsd.rb +1 -1
- data/lib/chef/provider/service/openbsd.rb +7 -7
- data/lib/chef/provider/service/redhat.rb +2 -2
- data/lib/chef/provider/service/simple.rb +2 -1
- data/lib/chef/provider/service/systemd.rb +2 -2
- data/lib/chef/provider/service/upstart.rb +3 -2
- data/lib/chef/provider/service/windows.rb +7 -6
- data/lib/chef/provider/subversion.rb +4 -1
- data/lib/chef/provider/template.rb +1 -0
- data/lib/chef/provider/user.rb +5 -1
- data/lib/chef/provider/user/aix.rb +3 -0
- data/lib/chef/provider/user/dscl.rb +8 -3
- data/lib/chef/provider/user/linux.rb +1 -0
- data/lib/chef/provider/user/pw.rb +1 -0
- data/lib/chef/provider/user/solaris.rb +2 -0
- data/lib/chef/provider/user/windows.rb +2 -1
- data/lib/chef/provider/windows_env.rb +3 -0
- data/lib/chef/provider/windows_script.rb +1 -1
- data/lib/chef/provider/windows_task.rb +4 -3
- data/lib/chef/provider/yum_repository.rb +1 -2
- data/lib/chef/provider/zypper_repository.rb +2 -3
- data/lib/chef/recipe.rb +2 -1
- data/lib/chef/resource.rb +24 -15
- data/lib/chef/resource/apt_package.rb +9 -9
- data/lib/chef/resource/apt_preference.rb +9 -9
- data/lib/chef/resource/apt_repository.rb +86 -23
- data/lib/chef/resource/apt_update.rb +2 -2
- data/lib/chef/resource/archive_file.rb +13 -13
- data/lib/chef/resource/build_essential.rb +5 -4
- data/lib/chef/resource/cab_package.rb +9 -9
- data/lib/chef/resource/chef_gem.rb +4 -4
- data/lib/chef/resource/chef_handler.rb +8 -7
- data/lib/chef/resource/chocolatey_config.rb +3 -3
- data/lib/chef/resource/chocolatey_feature.rb +2 -2
- data/lib/chef/resource/chocolatey_package.rb +8 -8
- data/lib/chef/resource/chocolatey_source.rb +3 -3
- data/lib/chef/resource/cookbook_file.rb +4 -4
- data/lib/chef/resource/cron.rb +12 -12
- data/lib/chef/resource/cron_access.rb +2 -2
- data/lib/chef/resource/cron_d.rb +45 -38
- data/lib/chef/resource/directory.rb +2 -2
- data/lib/chef/resource/dmg_package.rb +26 -26
- data/lib/chef/resource/dnf_package.rb +20 -20
- data/lib/chef/resource/dpkg_package.rb +5 -5
- data/lib/chef/resource/dsc_resource.rb +7 -7
- data/lib/chef/resource/dsc_script.rb +9 -4
- data/lib/chef/resource/execute.rb +14 -14
- data/lib/chef/resource/file.rb +4 -4
- data/lib/chef/resource/file/verification.rb +2 -0
- data/lib/chef/resource/file/verification/systemd_unit.rb +1 -0
- data/lib/chef/resource/gem_package.rb +7 -7
- data/lib/chef/resource/git.rb +2 -2
- data/lib/chef/resource/group.rb +5 -5
- data/lib/chef/resource/homebrew_cask.rb +17 -17
- data/lib/chef/resource/homebrew_package.rb +1 -1
- data/lib/chef/resource/homebrew_tap.rb +18 -18
- data/lib/chef/resource/hostname.rb +11 -11
- data/lib/chef/resource/http_request.rb +1 -1
- data/lib/chef/resource/ifconfig.rb +26 -26
- data/lib/chef/resource/ips_package.rb +2 -2
- data/lib/chef/resource/kernel_module.rb +25 -7
- data/lib/chef/resource/launchd.rb +105 -105
- data/lib/chef/resource/link.rb +10 -10
- data/lib/chef/resource/locale.rb +20 -20
- data/lib/chef/resource/log.rb +4 -4
- data/lib/chef/resource/lwrp_base.rb +1 -0
- data/lib/chef/resource/macos_userdefaults.rb +17 -16
- data/lib/chef/resource/macosx_service.rb +1 -1
- data/lib/chef/resource/mdadm.rb +14 -14
- data/lib/chef/resource/mount.rb +24 -24
- data/lib/chef/resource/msu_package.rb +8 -8
- data/lib/chef/resource/ohai.rb +1 -1
- data/lib/chef/resource/ohai_hint.rb +7 -5
- data/lib/chef/resource/openssl_dhparam.rb +14 -14
- data/lib/chef/resource/openssl_ec_private_key.rb +16 -16
- data/lib/chef/resource/openssl_ec_public_key.rb +9 -9
- data/lib/chef/resource/openssl_rsa_private_key.rb +17 -17
- data/lib/chef/resource/openssl_rsa_public_key.rb +9 -9
- data/lib/chef/resource/openssl_x509_certificate.rb +34 -34
- data/lib/chef/resource/openssl_x509_crl.rb +17 -17
- data/lib/chef/resource/openssl_x509_request.rb +20 -20
- data/lib/chef/resource/osx_profile.rb +5 -5
- data/lib/chef/resource/package.rb +9 -9
- data/lib/chef/resource/paludis_package.rb +2 -2
- data/lib/chef/resource/powershell_package.rb +8 -8
- data/lib/chef/resource/powershell_package_source.rb +13 -13
- data/lib/chef/resource/reboot.rb +4 -4
- data/lib/chef/resource/registry_key.rb +5 -3
- data/lib/chef/resource/remote_directory.rb +20 -20
- data/lib/chef/resource/remote_file.rb +8 -7
- data/lib/chef/resource/resource_notification.rb +4 -3
- data/lib/chef/resource/rhsm_errata.rb +2 -2
- data/lib/chef/resource/rhsm_errata_level.rb +4 -4
- data/lib/chef/resource/rhsm_register.rb +14 -14
- data/lib/chef/resource/rhsm_repo.rb +3 -3
- data/lib/chef/resource/rhsm_subscription.rb +2 -2
- data/lib/chef/resource/route.rb +11 -11
- data/lib/chef/resource/scm.rb +18 -18
- data/lib/chef/resource/service.rb +27 -27
- data/lib/chef/resource/snap_package.rb +4 -4
- data/lib/chef/resource/ssh_known_hosts_entry.rb +19 -19
- data/lib/chef/resource/subversion.rb +10 -10
- data/lib/chef/resource/sudo.rb +38 -37
- data/lib/chef/resource/swap_file.rb +9 -9
- data/lib/chef/resource/sysctl.rb +20 -17
- data/lib/chef/resource/systemd_unit.rb +12 -12
- data/lib/chef/resource/template.rb +8 -8
- data/lib/chef/resource/timezone.rb +3 -2
- data/lib/chef/resource/user.rb +19 -19
- data/lib/chef/resource/user/dscl_user.rb +2 -2
- data/lib/chef/resource/user/windows_user.rb +2 -2
- data/lib/chef/resource/windows_ad_join.rb +17 -16
- data/lib/chef/resource/windows_auto_run.rb +8 -8
- data/lib/chef/resource/windows_certificate.rb +13 -13
- data/lib/chef/resource/windows_dfs_folder.rb +13 -12
- data/lib/chef/resource/windows_dfs_namespace.rb +18 -18
- data/lib/chef/resource/windows_dfs_server.rb +12 -12
- data/lib/chef/resource/windows_dns_record.rb +8 -8
- data/lib/chef/resource/windows_dns_zone.rb +6 -6
- data/lib/chef/resource/windows_env.rb +6 -6
- data/lib/chef/resource/windows_feature.rb +12 -12
- data/lib/chef/resource/windows_feature_dism.rb +20 -19
- data/lib/chef/resource/windows_feature_powershell.rb +24 -22
- data/lib/chef/resource/windows_firewall_rule.rb +34 -34
- data/lib/chef/resource/windows_font.rb +4 -4
- data/lib/chef/resource/windows_package.rb +5 -5
- data/lib/chef/resource/windows_pagefile.rb +9 -8
- data/lib/chef/resource/windows_path.rb +2 -2
- data/lib/chef/resource/windows_printer.rb +15 -15
- data/lib/chef/resource/windows_printer_port.rb +14 -14
- data/lib/chef/resource/windows_script.rb +1 -1
- data/lib/chef/resource/windows_service.rb +16 -16
- data/lib/chef/resource/windows_share.rb +27 -24
- data/lib/chef/resource/windows_shortcut.rb +7 -7
- data/lib/chef/resource/windows_task.rb +53 -51
- data/lib/chef/resource/windows_uac.rb +15 -15
- data/lib/chef/resource/windows_workgroup.rb +15 -14
- data/lib/chef/resource/yum_package.rb +24 -24
- data/lib/chef/resource/yum_repository.rb +44 -44
- data/lib/chef/resource/zypper_package.rb +9 -9
- data/lib/chef/resource/zypper_repository.rb +30 -30
- data/lib/chef/resource_builder.rb +1 -0
- data/lib/chef/resource_collection.rb +6 -4
- data/lib/chef/resource_collection/resource_collection_serialization.rb +4 -3
- data/lib/chef/resource_collection/resource_list.rb +5 -3
- data/lib/chef/resource_collection/resource_set.rb +12 -8
- data/lib/chef/resource_collection/stepable_iterator.rb +1 -0
- data/lib/chef/resource_definition.rb +5 -3
- data/lib/chef/resource_definition_list.rb +1 -1
- data/lib/chef/resource_inspector.rb +1 -1
- data/lib/chef/resource_reporter.rb +1 -1
- data/lib/chef/role.rb +9 -7
- data/lib/chef/run_context.rb +5 -5
- data/lib/chef/run_context/cookbook_compiler.rb +5 -1
- data/lib/chef/run_list.rb +5 -4
- data/lib/chef/run_list/run_list_expansion.rb +3 -2
- data/lib/chef/run_list/run_list_item.rb +5 -5
- data/lib/chef/run_list/versioned_recipe_list.rb +1 -1
- data/lib/chef/run_status.rb +1 -1
- data/lib/chef/runner.rb +2 -4
- data/lib/chef/search/query.rb +3 -3
- data/lib/chef/shell/ext.rb +2 -2
- data/lib/chef/shell/model_wrapper.rb +2 -1
- data/lib/chef/shell/shell_session.rb +1 -1
- data/lib/chef/train_transport.rb +3 -3
- data/lib/chef/user.rb +6 -6
- data/lib/chef/user_v1.rb +13 -11
- data/lib/chef/util/diff.rb +5 -2
- data/lib/chef/util/dsc/configuration_generator.rb +6 -6
- data/lib/chef/util/dsc/lcm_output_parser.rb +2 -2
- data/lib/chef/util/dsc/local_configuration_manager.rb +2 -2
- data/lib/chef/util/dsc/resource_store.rb +2 -2
- data/lib/chef/util/file_edit.rb +1 -0
- data/lib/chef/util/powershell/cmdlet.rb +1 -1
- data/lib/chef/util/threaded_job_queue.rb +1 -1
- data/lib/chef/util/windows/logon_session.rb +5 -5
- data/lib/chef/util/windows/net_use.rb +2 -2
- data/lib/chef/util/windows/net_user.rb +3 -2
- data/lib/chef/version.rb +1 -1
- data/lib/chef/version_class.rb +1 -1
- data/lib/chef/version_constraint.rb +1 -1
- data/lib/chef/whitelist.rb +1 -1
- data/lib/chef/win32/api/crypto.rb +11 -11
- data/lib/chef/win32/api/error.rb +4 -4
- data/lib/chef/win32/api/file.rb +38 -38
- data/lib/chef/win32/api/installer.rb +3 -3
- data/lib/chef/win32/api/memory.rb +4 -4
- data/lib/chef/win32/api/net.rb +38 -38
- data/lib/chef/win32/api/process.rb +2 -2
- data/lib/chef/win32/api/psapi.rb +1 -1
- data/lib/chef/win32/api/registry.rb +3 -3
- data/lib/chef/win32/api/security.rb +87 -87
- data/lib/chef/win32/api/synchronization.rb +5 -5
- data/lib/chef/win32/api/system.rb +7 -7
- data/lib/chef/win32/api/unicode.rb +3 -3
- data/lib/chef/win32/eventlog.rb +2 -2
- data/lib/chef/win32/file.rb +5 -2
- data/lib/chef/win32/file/info.rb +1 -0
- data/lib/chef/win32/file/version_info.rb +15 -14
- data/lib/chef/win32/memory.rb +1 -1
- data/lib/chef/win32/net.rb +8 -4
- data/lib/chef/win32/registry.rb +6 -1
- data/lib/chef/win32/security.rb +7 -2
- data/lib/chef/win32/security/acl.rb +2 -1
- data/lib/chef/win32/security/security_descriptor.rb +4 -2
- data/lib/chef/win32/security/sid.rb +11 -10
- data/lib/chef/win32/security/token.rb +3 -1
- data/lib/chef/win32/version.rb +3 -3
- data/spec/data/apt/chef-integration-test-1.0/debian/rules +0 -0
- data/spec/data/apt/chef-integration-test-1.1/debian/rules +0 -0
- data/spec/data/apt/chef-integration-test2-1.0/debian/rules +0 -0
- data/spec/functional/assets/chefinittest +0 -0
- data/spec/functional/assets/testchefsubsys +0 -0
- data/spec/functional/dsl/reboot_pending_spec.rb +2 -2
- data/spec/functional/event_loggers/windows_eventlog_spec.rb +6 -4
- data/spec/functional/file_content_management/deploy_strategies_spec.rb +21 -21
- data/spec/functional/knife/exec_spec.rb +1 -1
- data/spec/functional/knife/ssh_spec.rb +3 -3
- data/spec/functional/mixin/user_context_spec.rb +3 -1
- data/spec/functional/provider/remote_file/cache_control_data_spec.rb +0 -0
- data/spec/functional/rebooter_spec.rb +1 -1
- data/spec/functional/resource/aix_service_spec.rb +1 -1
- data/spec/functional/resource/aixinit_service_spec.rb +1 -1
- data/spec/functional/resource/chocolatey_package_spec.rb +2 -2
- data/spec/functional/resource/cookbook_file_spec.rb +1 -3
- data/spec/functional/resource/cron_spec.rb +1 -0
- data/spec/functional/resource/dnf_package_spec.rb +5 -5
- data/spec/functional/resource/dpkg_package_spec.rb +4 -4
- data/spec/functional/resource/dsc_resource_spec.rb +2 -1
- data/spec/functional/resource/dsc_script_spec.rb +7 -11
- data/spec/functional/resource/git_spec.rb +5 -5
- data/spec/functional/resource/group_spec.rb +15 -13
- data/spec/functional/resource/ifconfig_spec.rb +2 -2
- data/spec/functional/resource/link_spec.rb +2 -2
- data/spec/functional/resource/locale_spec.rb +4 -4
- data/spec/functional/resource/mount_spec.rb +3 -3
- data/spec/functional/resource/powershell_script_spec.rb +9 -8
- data/spec/functional/resource/reboot_spec.rb +1 -1
- data/spec/functional/resource/remote_file_spec.rb +2 -2
- data/spec/functional/resource/template_spec.rb +1 -1
- data/spec/functional/resource/user/windows_spec.rb +2 -2
- data/spec/functional/resource/windows_certificate_spec.rb +3 -3
- data/spec/functional/resource/windows_service_spec.rb +3 -3
- data/spec/functional/run_lock_spec.rb +3 -2
- data/spec/functional/util/powershell/cmdlet_spec.rb +1 -1
- data/spec/functional/win32/security_spec.rb +12 -7
- data/spec/functional/win32/service_manager_spec.rb +1 -1
- data/spec/integration/client/client_spec.rb +79 -81
- data/spec/integration/client/exit_code_spec.rb +2 -2
- data/spec/integration/client/ipv6_spec.rb +2 -2
- data/spec/integration/knife/chef_fs_data_store_spec.rb +25 -25
- data/spec/integration/knife/chef_repo_path_spec.rb +4 -4
- data/spec/integration/knife/config_get_spec.rb +1 -1
- data/spec/integration/knife/config_list_profiles_spec.rb +2 -1
- data/spec/integration/knife/cookbook_api_ipv6_spec.rb +1 -1
- data/spec/integration/knife/cookbook_download_spec.rb +1 -1
- data/spec/integration/knife/diff_spec.rb +2 -2
- data/spec/integration/knife/download_spec.rb +1 -1
- data/spec/integration/knife/redirection_spec.rb +1 -1
- data/spec/integration/knife/upload_spec.rb +2 -2
- data/spec/integration/recipes/accumulator_spec.rb +4 -4
- data/spec/integration/recipes/lwrp_inline_resources_spec.rb +5 -5
- data/spec/integration/recipes/lwrp_spec.rb +2 -2
- data/spec/integration/recipes/notifies_spec.rb +20 -20
- data/spec/integration/recipes/notifying_block_spec.rb +4 -4
- data/spec/integration/recipes/provider_choice.rb +1 -2
- data/spec/integration/recipes/recipe_dsl_spec.rb +9 -9
- data/spec/integration/recipes/remote_directory.rb +2 -2
- data/spec/integration/solo/solo_spec.rb +20 -20
- data/spec/spec_helper.rb +9 -11
- data/spec/stress/win32/security_spec.rb +1 -1
- data/spec/support/lib/chef/resource/zen_follower.rb +1 -1
- data/spec/support/lib/chef/resource/zen_master.rb +1 -1
- data/spec/support/mock/platform.rb +2 -2
- data/spec/support/platform_helpers.rb +14 -0
- data/spec/support/platforms/win32/spec_service.rb +6 -10
- data/spec/support/shared/functional/execute_resource.rb +4 -4
- data/spec/support/shared/functional/file_resource.rb +1 -3
- data/spec/support/shared/functional/http.rb +15 -39
- data/spec/support/shared/functional/securable_resource.rb +4 -8
- data/spec/support/shared/functional/win32_service.rb +1 -1
- data/spec/support/shared/functional/windows_script.rb +2 -1
- data/spec/support/shared/integration/app_server_support.rb +3 -4
- data/spec/support/shared/integration/integration_helper.rb +1 -0
- data/spec/support/shared/integration/knife_support.rb +5 -5
- data/spec/support/shared/unit/application_dot_d.rb +10 -4
- data/spec/support/shared/unit/file_system_support.rb +3 -2
- data/spec/support/shared/unit/platform_introspector.rb +12 -12
- data/spec/support/shared/unit/provider/file.rb +1 -1
- data/spec/support/shared/unit/script_resource.rb +1 -1
- data/spec/support/shared/unit/windows_script_resource.rb +1 -1
- data/spec/tiny_server.rb +1 -1
- data/spec/unit/api_client/registration_spec.rb +1 -1
- data/spec/unit/api_client_spec.rb +5 -5
- data/spec/unit/api_client_v1_spec.rb +6 -6
- data/spec/unit/application/client_spec.rb +8 -8
- data/spec/unit/application/exit_code_spec.rb +3 -2
- data/spec/unit/application/knife_spec.rb +1 -2
- data/spec/unit/chef_fs/config_spec.rb +3 -3
- data/spec/unit/chef_fs/file_system/repository/directory_spec.rb +1 -1
- data/spec/unit/chef_fs/parallelizer.rb +1 -1
- data/spec/unit/client_spec.rb +1 -1
- data/spec/unit/config_fetcher_spec.rb +1 -1
- data/spec/unit/cookbook/metadata_spec.rb +4 -4
- data/spec/unit/cookbook/synchronizer_spec.rb +4 -4
- data/spec/unit/cookbook_loader_spec.rb +10 -10
- data/spec/unit/cookbook_site_streaming_uploader_spec.rb +1 -2
- data/spec/unit/cookbook_version_file_specificity_spec.rb +9 -9
- data/spec/unit/data_bag_item_spec.rb +8 -8
- data/spec/unit/data_bag_spec.rb +1 -1
- data/spec/unit/data_collector_spec.rb +82 -0
- data/spec/unit/decorator_spec.rb +2 -2
- data/spec/unit/deprecated_spec.rb +2 -2
- data/spec/unit/dsl/data_query_spec.rb +3 -2
- data/spec/unit/dsl/declare_resource_spec.rb +1 -1
- data/spec/unit/dsl/platform_introspection_spec.rb +2 -2
- data/spec/unit/encrypted_data_bag_item/check_encrypted_spec.rb +2 -1
- data/spec/unit/encrypted_data_bag_item_spec.rb +2 -1
- data/spec/unit/environment_spec.rb +9 -9
- data/spec/unit/event_dispatch/dsl_spec.rb +1 -1
- data/spec/unit/file_content_management/deploy/mv_unix_spec.rb +3 -3
- data/spec/unit/file_content_management/deploy/mv_windows_spec.rb +2 -2
- data/spec/unit/formatters/error_inspectors/resource_failure_inspector_spec.rb +3 -3
- data/spec/unit/guard_interpreter/resource_guard_interpreter_spec.rb +1 -1
- data/spec/unit/http/authenticator_spec.rb +3 -2
- data/spec/unit/http/json_input_spec.rb +1 -1
- data/spec/unit/key_spec.rb +7 -7
- data/spec/unit/knife/bootstrap/train_connector_spec.rb +13 -8
- data/spec/unit/knife/bootstrap_spec.rb +22 -16
- data/spec/unit/knife/client_bulk_delete_spec.rb +4 -4
- data/spec/unit/knife/configure_client_spec.rb +1 -1
- data/spec/unit/knife/configure_spec.rb +1 -1
- data/spec/unit/knife/cookbook_bulk_delete_spec.rb +1 -1
- data/spec/unit/knife/cookbook_delete_spec.rb +2 -2
- data/spec/unit/knife/cookbook_download_spec.rb +2 -2
- data/spec/unit/knife/cookbook_metadata_spec.rb +4 -4
- data/spec/unit/knife/cookbook_upload_spec.rb +4 -2
- data/spec/unit/knife/core/gem_glob_loader_spec.rb +4 -4
- data/spec/unit/knife/core/hashed_command_loader_spec.rb +4 -2
- data/spec/unit/knife/core/node_editor_spec.rb +8 -8
- data/spec/unit/knife/core/windows_bootstrap_context_spec.rb +1 -2
- data/spec/unit/knife/data_bag_from_file_spec.rb +2 -1
- data/spec/unit/knife/data_bag_show_spec.rb +2 -1
- data/spec/unit/knife/key_create_spec.rb +1 -1
- data/spec/unit/knife/key_delete_spec.rb +3 -3
- data/spec/unit/knife/key_edit_spec.rb +4 -4
- data/spec/unit/knife/key_list_spec.rb +1 -1
- data/spec/unit/knife/key_show_spec.rb +3 -3
- data/spec/unit/knife/node_bulk_delete_spec.rb +3 -3
- data/spec/unit/knife/node_delete_spec.rb +2 -2
- data/spec/unit/knife/node_edit_spec.rb +1 -1
- data/spec/unit/knife/node_environment_set_spec.rb +6 -1
- data/spec/unit/knife/node_from_file_spec.rb +1 -1
- data/spec/unit/knife/node_policy_set_spec.rb +1 -1
- data/spec/unit/knife/node_run_list_add_spec.rb +1 -1
- data/spec/unit/knife/node_run_list_remove_spec.rb +1 -1
- data/spec/unit/knife/node_run_list_set_spec.rb +1 -1
- data/spec/unit/knife/node_show_spec.rb +1 -1
- data/spec/unit/knife/raw_spec.rb +2 -2
- data/spec/unit/knife/role_bulk_delete_spec.rb +2 -2
- data/spec/unit/knife/role_create_spec.rb +1 -1
- data/spec/unit/knife/role_delete_spec.rb +1 -1
- data/spec/unit/knife/role_edit_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_add_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_clear_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_remove_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_replace_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_set_spec.rb +1 -1
- data/spec/unit/knife/role_from_file_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_add_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_clear_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_remove_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_replace_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_set_spec.rb +1 -1
- data/spec/unit/knife/status_spec.rb +2 -1
- data/spec/unit/knife/supermarket_install_spec.rb +5 -4
- data/spec/unit/knife/supermarket_share_spec.rb +1 -1
- data/spec/unit/knife_spec.rb +35 -34
- data/spec/unit/lwrp_spec.rb +19 -19
- data/spec/unit/mixin/homebrew_user_spec.rb +1 -1
- data/spec/unit/mixin/params_validate_spec.rb +10 -10
- data/spec/unit/mixin/properties_spec.rb +4 -4
- data/spec/unit/mixin/shell_out_spec.rb +3 -3
- data/spec/unit/mixin/template_spec.rb +4 -8
- data/spec/unit/mixin/unformatter_spec.rb +1 -2
- data/spec/unit/mixin/user_context_spec.rb +1 -2
- data/spec/unit/mixin/which.rb +2 -0
- data/spec/unit/mixin/windows_architecture_helper_spec.rb +3 -3
- data/spec/unit/node/attribute_spec.rb +12 -12
- data/spec/unit/node/immutable_collections_spec.rb +50 -50
- data/spec/unit/node/vivid_mash_spec.rb +4 -4
- data/spec/unit/node_spec.rb +12 -12
- data/spec/unit/org_spec.rb +3 -3
- data/spec/unit/policy_builder/policyfile_spec.rb +2 -2
- data/spec/unit/property/state_spec.rb +26 -25
- data/spec/unit/property/validation_spec.rb +14 -13
- data/spec/unit/property_spec.rb +11 -10
- data/spec/unit/provider/apt_update_spec.rb +6 -6
- data/spec/unit/provider/cron_spec.rb +1 -1
- data/spec/unit/provider/dsc_resource_spec.rb +6 -3
- data/spec/unit/provider/dsc_script_spec.rb +1 -1
- data/spec/unit/provider/git_spec.rb +38 -38
- data/spec/unit/provider/group/dscl_spec.rb +1 -1
- data/spec/unit/provider/group/groupadd_spec.rb +1 -1
- data/spec/unit/provider/group_spec.rb +2 -3
- data/spec/unit/provider/launchd_spec.rb +16 -8
- data/spec/unit/provider/link_spec.rb +22 -11
- data/spec/unit/provider/mount/mount_spec.rb +31 -31
- data/spec/unit/provider/mount/solaris_spec.rb +11 -11
- data/spec/unit/provider/ohai_spec.rb +1 -1
- data/spec/unit/provider/osx_profile_spec.rb +5 -7
- data/spec/unit/provider/package/apt_spec.rb +5 -5
- data/spec/unit/provider/package/bff_spec.rb +1 -1
- data/spec/unit/provider/package/cab_spec.rb +1 -1
- data/spec/unit/provider/package/chocolatey_spec.rb +8 -8
- data/spec/unit/provider/package/msu_spec.rb +1 -1
- data/spec/unit/provider/package/openbsd_spec.rb +14 -10
- data/spec/unit/provider/package/powershell_spec.rb +1 -1
- data/spec/unit/provider/package/smartos_spec.rb +2 -2
- data/spec/unit/provider/package/windows/exe_spec.rb +9 -9
- data/spec/unit/provider/package/windows/msi_spec.rb +7 -7
- data/spec/unit/provider/package/windows_spec.rb +2 -1
- data/spec/unit/provider/package/yum/yum_cache_spec.rb +1 -1
- data/spec/unit/provider/package/zypper_spec.rb +13 -4
- data/spec/unit/provider/powershell_script_spec.rb +12 -12
- data/spec/unit/provider/registry_key_spec.rb +1 -1
- data/spec/unit/provider/remote_directory_spec.rb +6 -6
- data/spec/unit/provider/route_spec.rb +11 -11
- data/spec/unit/provider/service/arch_service_spec.rb +11 -11
- data/spec/unit/provider/service/debian_service_spec.rb +2 -1
- data/spec/unit/provider/service/freebsd_service_spec.rb +23 -19
- data/spec/unit/provider/service/gentoo_service_spec.rb +2 -2
- data/spec/unit/provider/service/init_service_spec.rb +9 -9
- data/spec/unit/provider/service/invokercd_service_spec.rb +9 -9
- data/spec/unit/provider/service/macosx_spec.rb +1 -1
- data/spec/unit/provider/service/openbsd_service_spec.rb +15 -11
- data/spec/unit/provider/service/simple_service_spec.rb +5 -5
- data/spec/unit/provider/service/upstart_service_spec.rb +14 -14
- data/spec/unit/provider/service/windows_spec.rb +53 -35
- data/spec/unit/provider/subversion_spec.rb +8 -4
- data/spec/unit/provider/systemd_unit_spec.rb +146 -146
- data/spec/unit/provider/template/content_spec.rb +28 -28
- data/spec/unit/provider/windows_task_spec.rb +7 -2
- data/spec/unit/provider_resolver_spec.rb +2 -2
- data/spec/unit/provider_spec.rb +2 -4
- data/spec/unit/recipe_spec.rb +3 -3
- data/spec/unit/resource/batch_spec.rb +1 -1
- data/spec/unit/resource/cab_package_spec.rb +1 -1
- data/spec/unit/resource/chef_gem_spec.rb +1 -1
- data/spec/unit/resource/directory_spec.rb +1 -1
- data/spec/unit/resource/dnf_package_spec.rb +1 -1
- data/spec/unit/resource/dsc_resource_spec.rb +1 -1
- data/spec/unit/resource/file/verification_spec.rb +1 -2
- data/spec/unit/resource/file_spec.rb +1 -1
- data/spec/unit/resource/group_spec.rb +1 -1
- data/spec/unit/resource/kernel_module_spec.rb +1 -0
- data/spec/unit/resource/link_spec.rb +1 -1
- data/spec/unit/resource/locale_spec.rb +12 -12
- data/spec/unit/resource/osx_profile_spec.rb +2 -1
- data/spec/unit/resource/powershell_script_spec.rb +12 -7
- data/spec/unit/resource/registry_key_spec.rb +3 -3
- data/spec/unit/resource/rhsm_repo_spec.rb +6 -0
- data/spec/unit/resource/service_spec.rb +1 -1
- data/spec/unit/resource/template_spec.rb +2 -2
- data/spec/unit/resource/windows_env_spec.rb +1 -1
- data/spec/unit/resource/windows_service_spec.rb +7 -7
- data/spec/unit/resource/windows_task_spec.rb +2 -2
- data/spec/unit/resource/windows_uac_spec.rb +2 -2
- data/spec/unit/resource/yum_package_spec.rb +1 -1
- data/spec/unit/resource_collection/resource_list_spec.rb +1 -1
- data/spec/unit/resource_collection/resource_set_spec.rb +7 -7
- data/spec/unit/resource_collection/stepable_iterator_spec.rb +2 -2
- data/spec/unit/resource_collection_spec.rb +4 -4
- data/spec/unit/resource_definition_spec.rb +2 -2
- data/spec/unit/resource_inspector_spec.rb +1 -1
- data/spec/unit/resource_reporter_spec.rb +6 -4
- data/spec/unit/resource_spec.rb +21 -21
- data/spec/unit/role_spec.rb +2 -2
- data/spec/unit/run_context/cookbook_compiler_spec.rb +24 -24
- data/spec/unit/run_list/run_list_expansion_spec.rb +9 -6
- data/spec/unit/run_list_spec.rb +1 -1
- data/spec/unit/runner_spec.rb +3 -3
- data/spec/unit/search/query_spec.rb +3 -2
- data/spec/unit/shell/model_wrapper_spec.rb +1 -1
- data/spec/unit/shell/shell_session_spec.rb +8 -11
- data/spec/unit/shell_spec.rb +1 -2
- data/spec/unit/user_spec.rb +4 -4
- data/spec/unit/user_v1_spec.rb +3 -3
- data/spec/unit/util/backup_spec.rb +1 -1
- data/spec/unit/util/editor_spec.rb +1 -1
- data/spec/unit/util/powershell/ps_credential_spec.rb +3 -2
- data/spec/unit/util/threaded_job_queue_spec.rb +2 -2
- data/spec/unit/version_class_spec.rb +4 -4
- data/spec/unit/win32/registry_spec.rb +5 -5
- data/spec/unit/win32/security_spec.rb +2 -1
- data/tasks/bin/run_external_test +1 -1
- data/tasks/docs.rb +78 -61
- data/tasks/rspec.rb +1 -1
- metadata +5 -33
- data/lib/.DS_Store +0 -0
- data/lib/chef/.DS_Store +0 -0
- data/lib/chef/dsl/.DS_Store +0 -0
- data/lib/chef/knife/.DS_Store +0 -0
- data/lib/chef/mixin/.DS_Store +0 -0
- data/lib/chef/nil_argument.rb +0 -3
- data/lib/chef/provider/.DS_Store +0 -0
- data/lib/chef/provider/package/.DS_Store +0 -0
- data/lib/chef/provider/package/freebsd/.DS_Store +0 -0
- data/lib/chef/resource/.DS_Store +0 -0
- data/lib/chef/resource/file/.DS_Store +0 -0
- data/spec/.DS_Store +0 -0
- data/spec/data/.DS_Store +0 -0
- data/spec/data/cookbooks/.DS_Store +0 -0
- data/spec/data/cookbooks/java/.DS_Store +0 -0
- data/spec/data/cookbooks/java/files/.DS_Store +0 -0
- data/spec/data/mac_users/.DS_Store +0 -0
- data/spec/data/nodes/Tim.local.json +0 -3
- data/spec/data/nodes/Tims-MBP.local.json +0 -3
- data/spec/data/run_context/.DS_Store +0 -0
- data/spec/data/run_context/cookbooks/.DS_Store +0 -0
- data/spec/functional/.DS_Store +0 -0
- data/spec/functional/resource/.DS_Store +0 -0
- data/spec/functional/util/.DS_Store +0 -0
- data/spec/integration/.DS_Store +0 -0
- data/spec/stress/.DS_Store +0 -0
- data/spec/support/.DS_Store +0 -0
- data/spec/unit/.DS_Store +0 -0
- data/tasks/.DS_Store +0 -0
@@ -38,7 +38,7 @@ class Chef::Util::Windows::NetUse < Chef::Util::Windows
|
|
38
38
|
def add(args)
|
39
39
|
if args.class == String
|
40
40
|
remote = args
|
41
|
-
args =
|
41
|
+
args = {}
|
42
42
|
args[:remote] = remote
|
43
43
|
end
|
44
44
|
args[:local] ||= use_name
|
@@ -66,7 +66,7 @@ class Chef::Util::Windows::NetUse < Chef::Util::Windows
|
|
66
66
|
end
|
67
67
|
|
68
68
|
def device
|
69
|
-
get_info
|
69
|
+
get_info[:remote]
|
70
70
|
end
|
71
71
|
|
72
72
|
def delete
|
@@ -95,7 +95,7 @@ class Chef::Util::Windows::NetUser < Chef::Util::Windows
|
|
95
95
|
# XXX for an extra painful alternative, see: http://support.microsoft.com/kb/180548
|
96
96
|
def validate_credentials(passwd)
|
97
97
|
token = Security.logon_user(@username, nil, passwd,
|
98
|
-
|
98
|
+
LOGON32_LOGON_NETWORK, LOGON32_PROVIDER_DEFAULT)
|
99
99
|
true
|
100
100
|
rescue Chef::Exceptions::Win32APIError => e
|
101
101
|
Chef::Log.trace(e)
|
@@ -103,6 +103,7 @@ class Chef::Util::Windows::NetUser < Chef::Util::Windows
|
|
103
103
|
if e.to_s =~ /System Error Code: 1326/
|
104
104
|
return false
|
105
105
|
end
|
106
|
+
|
106
107
|
# all other exceptions will assume we cannot logon for a different reason
|
107
108
|
Chef::Log.trace("Unable to login with the specified credentials. Assuming the credentials are valid.")
|
108
109
|
true
|
@@ -167,6 +168,6 @@ class Chef::Util::Windows::NetUser < Chef::Util::Windows
|
|
167
168
|
end
|
168
169
|
|
169
170
|
def check_enabled
|
170
|
-
(get_info
|
171
|
+
(get_info[:flags] & NetUser::UF_ACCOUNTDISABLE) != 0
|
171
172
|
end
|
172
173
|
end
|
data/lib/chef/version.rb
CHANGED
data/lib/chef/version_class.rb
CHANGED
@@ -90,7 +90,7 @@ class Chef
|
|
90
90
|
parse(constraint_spec.first)
|
91
91
|
else
|
92
92
|
msg = "only one version constraint operation is supported, but you gave #{constraint_spec.size} "
|
93
|
-
msg << "['#{constraint_spec.join(
|
93
|
+
msg << "['#{constraint_spec.join(", ")}']"
|
94
94
|
raise Chef::Exceptions::InvalidVersionConstraint, msg
|
95
95
|
end
|
96
96
|
end
|
data/lib/chef/whitelist.rb
CHANGED
@@ -73,7 +73,7 @@ class Chef
|
|
73
73
|
# assumed to contain exact keys (that is, Array elements will not be split
|
74
74
|
# by "/").
|
75
75
|
def self.to_array(item)
|
76
|
-
return item if item.
|
76
|
+
return item if item.is_a? Array
|
77
77
|
|
78
78
|
parts = item.split("/")
|
79
79
|
parts.shift if !parts.empty? && parts[0].empty?
|
@@ -35,8 +35,8 @@ class Chef
|
|
35
35
|
CRYPTPROTECT_AUDIT = 0x10
|
36
36
|
|
37
37
|
class CRYPT_INTEGER_BLOB < FFI::Struct
|
38
|
-
layout :cbData, :DWORD,
|
39
|
-
|
38
|
+
layout :cbData, :DWORD, # Count, in bytes, of data
|
39
|
+
:pbData, :pointer # Pointer to data buffer
|
40
40
|
def initialize(str = nil)
|
41
41
|
super(nil)
|
42
42
|
if str
|
@@ -47,15 +47,15 @@ class Chef
|
|
47
47
|
|
48
48
|
end
|
49
49
|
|
50
|
-
safe_attach_function :CryptProtectData,
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
50
|
+
safe_attach_function :CryptProtectData, %i{
|
51
|
+
PDATA_BLOB
|
52
|
+
LPCWSTR
|
53
|
+
PDATA_BLOB
|
54
|
+
pointer
|
55
|
+
PCRYPTPROTECT_PROMPTSTRUCT
|
56
|
+
DWORD
|
57
|
+
PDATA_BLOB
|
58
|
+
}, :BOOL
|
59
59
|
|
60
60
|
end
|
61
61
|
end
|
data/lib/chef/win32/api/error.rb
CHANGED
@@ -905,8 +905,8 @@ DWORD WINAPI FormatMessage(
|
|
905
905
|
__in_opt va_list *Arguments
|
906
906
|
);
|
907
907
|
=end
|
908
|
-
safe_attach_function :FormatMessageA,
|
909
|
-
safe_attach_function :FormatMessageW,
|
908
|
+
safe_attach_function :FormatMessageA, %i{DWORD HANDLE DWORD DWORD LPTSTR DWORD varargs}, :DWORD
|
909
|
+
safe_attach_function :FormatMessageW, %i{DWORD HANDLE DWORD DWORD LPWSTR DWORD varargs}, :DWORD
|
910
910
|
|
911
911
|
=begin
|
912
912
|
DWORD WINAPI GetLastError(void);
|
@@ -918,7 +918,7 @@ void WINAPI SetLastError(
|
|
918
918
|
);
|
919
919
|
=end
|
920
920
|
safe_attach_function :SetLastError, [:DWORD], :void
|
921
|
-
safe_attach_function :SetLastErrorEx,
|
921
|
+
safe_attach_function :SetLastErrorEx, %i{DWORD DWORD}, :void
|
922
922
|
=begin
|
923
923
|
UINT WINAPI GetErrorMode(void);s
|
924
924
|
=end
|
@@ -938,7 +938,7 @@ HMODULE WINAPI LoadLibraryEx(
|
|
938
938
|
_In_ DWORD dwFlags
|
939
939
|
);
|
940
940
|
=end
|
941
|
-
safe_attach_function :LoadLibraryExW,
|
941
|
+
safe_attach_function :LoadLibraryExW, %i{LPCTSTR HANDLE DWORD}, :HANDLE
|
942
942
|
|
943
943
|
=begin
|
944
944
|
https://msdn.microsoft.com/en-us/library/windows/desktop/ms683152(v=vs.85).aspx
|
data/lib/chef/win32/api/file.rb
CHANGED
@@ -189,7 +189,7 @@ class Chef
|
|
189
189
|
# see https://msdn.microsoft.com/en-us/library/windows/desktop/ms647464(v=vs.85).aspx
|
190
190
|
class Translation < FFI::Struct
|
191
191
|
layout :w_lang, :WORD,
|
192
|
-
|
192
|
+
:w_code_page, :WORD
|
193
193
|
end
|
194
194
|
|
195
195
|
=begin
|
@@ -200,7 +200,7 @@ typedef struct _FILETIME {
|
|
200
200
|
=end
|
201
201
|
class FILETIME < FFI::Struct
|
202
202
|
layout :dw_low_date_time, :DWORD,
|
203
|
-
|
203
|
+
:dw_high_date_time, :DWORD
|
204
204
|
end
|
205
205
|
|
206
206
|
=begin
|
@@ -212,8 +212,8 @@ typedef struct _SECURITY_ATTRIBUTES {
|
|
212
212
|
=end
|
213
213
|
class SECURITY_ATTRIBUTES < FFI::Struct
|
214
214
|
layout :n_length, :DWORD,
|
215
|
-
|
216
|
-
|
215
|
+
:lp_security_descriptor, :LPVOID,
|
216
|
+
:b_inherit_handle, :DWORD
|
217
217
|
end
|
218
218
|
|
219
219
|
=begin
|
@@ -232,15 +232,15 @@ typedef struct _WIN32_FIND_DATA {
|
|
232
232
|
=end
|
233
233
|
class WIN32_FIND_DATA < FFI::Struct
|
234
234
|
layout :dw_file_attributes, :DWORD,
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
235
|
+
:ft_creation_time, FILETIME,
|
236
|
+
:ft_last_access_time, FILETIME,
|
237
|
+
:ft_last_write_time, FILETIME,
|
238
|
+
:n_file_size_high, :DWORD,
|
239
|
+
:n_file_size_low, :DWORD,
|
240
|
+
:dw_reserved_0, :DWORD,
|
241
|
+
:dw_reserved_1, :DWORD,
|
242
|
+
:c_file_name, [:BYTE, MAX_PATH * 2],
|
243
|
+
:c_alternate_file_name, [:BYTE, 14]
|
244
244
|
end
|
245
245
|
|
246
246
|
=begin
|
@@ -259,15 +259,15 @@ typedef struct _BY_HANDLE_FILE_INFORMATION {
|
|
259
259
|
=end
|
260
260
|
class BY_HANDLE_FILE_INFORMATION < FFI::Struct
|
261
261
|
layout :dw_file_attributes, :DWORD,
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
262
|
+
:ft_creation_time, FILETIME,
|
263
|
+
:ft_last_access_time, FILETIME,
|
264
|
+
:ft_last_write_time, FILETIME,
|
265
|
+
:dw_volume_serial_number, :DWORD,
|
266
|
+
:n_file_size_high, :DWORD,
|
267
|
+
:n_file_size_low, :DWORD,
|
268
|
+
:n_number_of_links, :DWORD,
|
269
|
+
:n_file_index_high, :DWORD,
|
270
|
+
:n_file_index_low, :DWORD
|
271
271
|
end
|
272
272
|
|
273
273
|
=begin
|
@@ -369,7 +369,7 @@ HANDLE WINAPI CreateFile(
|
|
369
369
|
__in_opt HANDLE hTemplateFile
|
370
370
|
);
|
371
371
|
=end
|
372
|
-
safe_attach_function :CreateFileW,
|
372
|
+
safe_attach_function :CreateFileW, %i{LPCTSTR DWORD DWORD LPSECURITY_ATTRIBUTES DWORD DWORD pointer}, :HANDLE
|
373
373
|
|
374
374
|
=begin
|
375
375
|
BOOL WINAPI FindClose(
|
@@ -393,7 +393,7 @@ DWORD WINAPI GetFinalPathNameByHandle(
|
|
393
393
|
__in DWORD dwFlags
|
394
394
|
);
|
395
395
|
=end
|
396
|
-
safe_attach_function :GetFinalPathNameByHandleW,
|
396
|
+
safe_attach_function :GetFinalPathNameByHandleW, %i{HANDLE LPTSTR DWORD DWORD}, :DWORD
|
397
397
|
|
398
398
|
=begin
|
399
399
|
BOOL WINAPI GetFileInformationByHandle(
|
@@ -401,7 +401,7 @@ BOOL WINAPI GetFileInformationByHandle(
|
|
401
401
|
__out LPBY_HANDLE_FILE_INFORMATION lpFileInformation
|
402
402
|
);
|
403
403
|
=end
|
404
|
-
safe_attach_function :GetFileInformationByHandle,
|
404
|
+
safe_attach_function :GetFileInformationByHandle, %i{HANDLE LPBY_HANDLE_FILE_INFORMATION}, :BOOL
|
405
405
|
|
406
406
|
=begin
|
407
407
|
HANDLE WINAPI FindFirstFile(
|
@@ -409,7 +409,7 @@ HANDLE WINAPI FindFirstFile(
|
|
409
409
|
__out LPWIN32_FIND_DATA lpFindFileData
|
410
410
|
);
|
411
411
|
=end
|
412
|
-
safe_attach_function :FindFirstFileW,
|
412
|
+
safe_attach_function :FindFirstFileW, %i{LPCTSTR LPWIN32_FIND_DATA}, :HANDLE
|
413
413
|
|
414
414
|
=begin
|
415
415
|
BOOL WINAPI CreateHardLink(
|
@@ -418,7 +418,7 @@ BOOL WINAPI CreateHardLink(
|
|
418
418
|
__reserved LPSECURITY_ATTRIBUTES lpSecurityAttributes
|
419
419
|
);
|
420
420
|
=end
|
421
|
-
safe_attach_function :CreateHardLinkW,
|
421
|
+
safe_attach_function :CreateHardLinkW, %i{LPCTSTR LPCTSTR LPSECURITY_ATTRIBUTES}, :BOOLEAN
|
422
422
|
|
423
423
|
=begin
|
424
424
|
BOOLEAN WINAPI CreateSymbolicLink(
|
@@ -427,7 +427,7 @@ BOOLEAN WINAPI CreateSymbolicLink(
|
|
427
427
|
__in DWORD dwFlags
|
428
428
|
);
|
429
429
|
=end
|
430
|
-
safe_attach_function :CreateSymbolicLinkW,
|
430
|
+
safe_attach_function :CreateSymbolicLinkW, %i{LPTSTR LPTSTR DWORD}, :BOOLEAN
|
431
431
|
|
432
432
|
=begin
|
433
433
|
DWORD WINAPI GetLongPathName(
|
@@ -436,7 +436,7 @@ DWORD WINAPI GetLongPathName(
|
|
436
436
|
__in DWORD cchBuffer
|
437
437
|
);
|
438
438
|
=end
|
439
|
-
safe_attach_function :GetLongPathNameW,
|
439
|
+
safe_attach_function :GetLongPathNameW, %i{LPCTSTR LPTSTR DWORD}, :DWORD
|
440
440
|
|
441
441
|
=begin
|
442
442
|
DWORD WINAPI GetShortPathName(
|
@@ -445,7 +445,7 @@ DWORD WINAPI GetShortPathName(
|
|
445
445
|
__in DWORD cchBuffer
|
446
446
|
);
|
447
447
|
=end
|
448
|
-
safe_attach_function :GetShortPathNameW,
|
448
|
+
safe_attach_function :GetShortPathNameW, %i{LPCTSTR LPTSTR DWORD}, :DWORD
|
449
449
|
|
450
450
|
=begin
|
451
451
|
BOOL WINAPI DeviceIoControl(
|
@@ -459,7 +459,7 @@ BOOL WINAPI DeviceIoControl(
|
|
459
459
|
__inout_opt LPOVERLAPPED lpOverlapped
|
460
460
|
);
|
461
461
|
=end
|
462
|
-
safe_attach_function :DeviceIoControl,
|
462
|
+
safe_attach_function :DeviceIoControl, %i{HANDLE DWORD LPVOID DWORD LPVOID DWORD LPDWORD pointer}, :BOOL
|
463
463
|
|
464
464
|
# BOOL WINAPI DeleteVolumeMountPoint(
|
465
465
|
# _In_ LPCTSTR lpszVolumeMountPoint
|
@@ -470,14 +470,14 @@ BOOL WINAPI DeviceIoControl(
|
|
470
470
|
# _In_ LPCTSTR lpszVolumeMountPoint,
|
471
471
|
# _In_ LPCTSTR lpszVolumeName
|
472
472
|
# );
|
473
|
-
safe_attach_function :SetVolumeMountPointW,
|
473
|
+
safe_attach_function :SetVolumeMountPointW, %i{LPCTSTR LPCTSTR}, :BOOL
|
474
474
|
|
475
475
|
# BOOL WINAPI GetVolumeNameForVolumeMountPoint(
|
476
476
|
# _In_ LPCTSTR lpszVolumeMountPoint,
|
477
477
|
# _Out_ LPTSTR lpszVolumeName,
|
478
478
|
# _In_ DWORD cchBufferLength
|
479
479
|
# );
|
480
|
-
safe_attach_function :GetVolumeNameForVolumeMountPointW,
|
480
|
+
safe_attach_function :GetVolumeNameForVolumeMountPointW, %i{LPCTSTR LPTSTR DWORD}, :BOOL
|
481
481
|
|
482
482
|
=begin
|
483
483
|
BOOL WINAPI GetFileVersionInfo(
|
@@ -487,7 +487,7 @@ BOOL WINAPI GetFileVersionInfo(
|
|
487
487
|
_Out_ LPVOID lpData
|
488
488
|
);
|
489
489
|
=end
|
490
|
-
safe_attach_function :GetFileVersionInfoW,
|
490
|
+
safe_attach_function :GetFileVersionInfoW, %i{LPCTSTR DWORD DWORD LPVOID}, :BOOL
|
491
491
|
|
492
492
|
=begin
|
493
493
|
DWORD WINAPI GetFileVersionInfoSize(
|
@@ -495,7 +495,7 @@ DWORD WINAPI GetFileVersionInfoSize(
|
|
495
495
|
_Out_opt_ LPDWORD lpdwHandle
|
496
496
|
);
|
497
497
|
=end
|
498
|
-
safe_attach_function :GetFileVersionInfoSizeW,
|
498
|
+
safe_attach_function :GetFileVersionInfoSizeW, %i{LPCTSTR LPDWORD}, :DWORD
|
499
499
|
|
500
500
|
=begin
|
501
501
|
BOOL WINAPI VerQueryValue(
|
@@ -505,7 +505,7 @@ BOOL WINAPI VerQueryValue(
|
|
505
505
|
_Out_ PUINT puLen
|
506
506
|
);
|
507
507
|
=end
|
508
|
-
safe_attach_function :VerQueryValueW,
|
508
|
+
safe_attach_function :VerQueryValueW, %i{LPCVOID LPCTSTR LPVOID PUINT}, :BOOL
|
509
509
|
|
510
510
|
###############################################
|
511
511
|
# Helpers
|
@@ -563,7 +563,7 @@ BOOL WINAPI VerQueryValue(
|
|
563
563
|
def file_handle(path)
|
564
564
|
path = canonical_encode_path(path)
|
565
565
|
handle = CreateFileW(path, GENERIC_READ, FILE_SHARE_READ,
|
566
|
-
|
566
|
+
nil, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_BACKUP_SEMANTICS, nil)
|
567
567
|
|
568
568
|
if handle == INVALID_HANDLE_VALUE
|
569
569
|
Chef::ReservedNames::Win32::Error.raise!
|
@@ -577,7 +577,7 @@ BOOL WINAPI VerQueryValue(
|
|
577
577
|
def symlink_file_handle(path)
|
578
578
|
path = encode_path(path)
|
579
579
|
handle = CreateFileW(path, FILE_READ_EA, FILE_SHARE_READ,
|
580
|
-
|
580
|
+
nil, OPEN_EXISTING, FILE_FLAG_OPEN_REPARSE_POINT | FILE_FLAG_BACKUP_SEMANTICS, nil)
|
581
581
|
|
582
582
|
if handle == INVALID_HANDLE_VALUE
|
583
583
|
Chef::ReservedNames::Win32::Error.raise!
|
@@ -44,7 +44,7 @@ UINT MsiOpenPackage(
|
|
44
44
|
_Out_ MSIHANDLE *hProduct
|
45
45
|
);
|
46
46
|
=end
|
47
|
-
safe_attach_function :msi_open_package, :MsiOpenPackageExA,
|
47
|
+
safe_attach_function :msi_open_package, :MsiOpenPackageExA, %i{string int pointer}, :int
|
48
48
|
|
49
49
|
=begin
|
50
50
|
UINT MsiGetProductProperty(
|
@@ -54,7 +54,7 @@ UINT MsiGetProductProperty(
|
|
54
54
|
_Inout_ DWORD *pcchValueBuf
|
55
55
|
);
|
56
56
|
=end
|
57
|
-
safe_attach_function :msi_get_product_property, :MsiGetProductPropertyA,
|
57
|
+
safe_attach_function :msi_get_product_property, :MsiGetProductPropertyA, %i{pointer pointer pointer pointer}, :int
|
58
58
|
|
59
59
|
=begin
|
60
60
|
UINT MsiGetProductInfo(
|
@@ -64,7 +64,7 @@ UINT MsiGetProductInfo(
|
|
64
64
|
_Inout_ DWORD *pcchValueBuf
|
65
65
|
);
|
66
66
|
=end
|
67
|
-
safe_attach_function :msi_get_product_info, :MsiGetProductInfoA,
|
67
|
+
safe_attach_function :msi_get_product_info, :MsiGetProductInfoA, %i{pointer pointer pointer pointer}, :int
|
68
68
|
|
69
69
|
=begin
|
70
70
|
UINT MsiCloseHandle(
|
@@ -56,7 +56,7 @@ HLOCAL WINAPI LocalAlloc(
|
|
56
56
|
__in SIZE_T uBytes
|
57
57
|
);
|
58
58
|
=end
|
59
|
-
safe_attach_function :LocalAlloc,
|
59
|
+
safe_attach_function :LocalAlloc, %i{UINT SIZE_T}, :pointer
|
60
60
|
|
61
61
|
=begin
|
62
62
|
UINT WINAPI LocalFlags(
|
@@ -79,7 +79,7 @@ HLOCAL WINAPI LocalReAlloc(
|
|
79
79
|
__in UINT uFlags
|
80
80
|
);
|
81
81
|
=end
|
82
|
-
safe_attach_function :LocalReAlloc,
|
82
|
+
safe_attach_function :LocalReAlloc, %i{pointer SIZE_T UINT}, :pointer
|
83
83
|
|
84
84
|
=begin
|
85
85
|
UINT WINAPI LocalSize(
|
@@ -95,9 +95,9 @@ UINT WINAPI LocalSize(
|
|
95
95
|
ffi_lib FFI::Library::LIBC
|
96
96
|
safe_attach_function :malloc, [:size_t], :pointer
|
97
97
|
safe_attach_function :calloc, [:size_t], :pointer
|
98
|
-
safe_attach_function :realloc,
|
98
|
+
safe_attach_function :realloc, %i{pointer size_t}, :pointer
|
99
99
|
safe_attach_function :free, [:pointer], :void
|
100
|
-
safe_attach_function :memcpy,
|
100
|
+
safe_attach_function :memcpy, %i{pointer pointer size_t}, :pointer
|
101
101
|
|
102
102
|
end
|
103
103
|
end
|
data/lib/chef/win32/api/net.rb
CHANGED
@@ -146,7 +146,7 @@ class Chef
|
|
146
146
|
|
147
147
|
class LOCALGROUP_INFO_1 < FFI::Struct
|
148
148
|
layout :lgrpi1_name, :LPWSTR,
|
149
|
-
|
149
|
+
:lgrpi1_comment, :LPWSTR
|
150
150
|
end
|
151
151
|
|
152
152
|
class USE_INFO_2 < FFI::Struct
|
@@ -169,9 +169,9 @@ class Chef
|
|
169
169
|
# _In_ LPBYTE buf,
|
170
170
|
# _Out_ LPDWORD parm_err
|
171
171
|
# );
|
172
|
-
safe_attach_function :NetLocalGroupAdd,
|
173
|
-
|
174
|
-
|
172
|
+
safe_attach_function :NetLocalGroupAdd, %i{
|
173
|
+
LPCWSTR DWORD LPBYTE LPDWORD
|
174
|
+
}, :DWORD
|
175
175
|
|
176
176
|
# NET_API_STATUS NetLocalGroupSetInfo(
|
177
177
|
# _In_ LPCWSTR servername,
|
@@ -180,15 +180,15 @@ class Chef
|
|
180
180
|
# _In_ LPBYTE buf,
|
181
181
|
# _Out_ LPDWORD parm_err
|
182
182
|
# );
|
183
|
-
safe_attach_function :NetLocalGroupSetInfo,
|
184
|
-
|
185
|
-
|
183
|
+
safe_attach_function :NetLocalGroupSetInfo, %i{
|
184
|
+
LPCWSTR LPCWSTR DWORD LPBYTE LPDWORD
|
185
|
+
}, :DWORD
|
186
186
|
|
187
187
|
# NET_API_STATUS NetLocalGroupDel(
|
188
188
|
# _In_ LPCWSTR servername,
|
189
189
|
# _In_ LPCWSTR groupname
|
190
190
|
# );
|
191
|
-
safe_attach_function :NetLocalGroupDel,
|
191
|
+
safe_attach_function :NetLocalGroupDel, %i{LPCWSTR LPCWSTR}, :DWORD
|
192
192
|
|
193
193
|
# NET_API_STATUS NetLocalGroupGetMembers(
|
194
194
|
# _In_ LPCWSTR servername,
|
@@ -200,10 +200,10 @@ class Chef
|
|
200
200
|
# _Out_ LPDWORD totalentries,
|
201
201
|
# _Inout_ PDWORD_PTR resumehandle
|
202
202
|
# );
|
203
|
-
safe_attach_function :NetLocalGroupGetMembers,
|
204
|
-
|
205
|
-
|
206
|
-
|
203
|
+
safe_attach_function :NetLocalGroupGetMembers, %i{
|
204
|
+
LPCWSTR LPCWSTR DWORD LPBYTE DWORD
|
205
|
+
LPDWORD LPDWORD PDWORD_PTR
|
206
|
+
}, :DWORD
|
207
207
|
|
208
208
|
# NET_API_STATUS NetUserEnum(
|
209
209
|
# _In_ LPCWSTR servername,
|
@@ -215,10 +215,10 @@ class Chef
|
|
215
215
|
# _Out_ LPDWORD totalentries,
|
216
216
|
# _Inout_ LPDWORD resume_handle
|
217
217
|
# );
|
218
|
-
safe_attach_function :NetUserEnum,
|
219
|
-
|
220
|
-
|
221
|
-
|
218
|
+
safe_attach_function :NetUserEnum, %i{
|
219
|
+
LPCWSTR DWORD DWORD LPBYTE
|
220
|
+
DWORD LPDWORD LPDWORD LPDWORD
|
221
|
+
}, :DWORD
|
222
222
|
|
223
223
|
# NET_API_STATUS NetApiBufferFree(
|
224
224
|
# _In_ LPVOID Buffer
|
@@ -231,9 +231,9 @@ class Chef
|
|
231
231
|
# _In_ LPBYTE buf,
|
232
232
|
# _Out_ LPDWORD parm_err
|
233
233
|
# );
|
234
|
-
safe_attach_function :NetUserAdd,
|
235
|
-
|
236
|
-
|
234
|
+
safe_attach_function :NetUserAdd, %i{
|
235
|
+
LMSTR DWORD LPBYTE LPDWORD
|
236
|
+
}, :DWORD
|
237
237
|
|
238
238
|
# NET_API_STATUS NetLocalGroupAddMembers(
|
239
239
|
# _In_ LPCWSTR servername,
|
@@ -242,9 +242,9 @@ class Chef
|
|
242
242
|
# _In_ LPBYTE buf,
|
243
243
|
# _In_ DWORD totalentries
|
244
244
|
# );
|
245
|
-
safe_attach_function :NetLocalGroupAddMembers,
|
246
|
-
|
247
|
-
|
245
|
+
safe_attach_function :NetLocalGroupAddMembers, %i{
|
246
|
+
LPCWSTR LPCWSTR DWORD LPBYTE DWORD
|
247
|
+
}, :DWORD
|
248
248
|
|
249
249
|
# NET_API_STATUS NetLocalGroupSetMembers(
|
250
250
|
# _In_ LPCWSTR servername,
|
@@ -253,9 +253,9 @@ class Chef
|
|
253
253
|
# _In_ LPBYTE buf,
|
254
254
|
# _In_ DWORD totalentries
|
255
255
|
# );
|
256
|
-
safe_attach_function :NetLocalGroupSetMembers,
|
257
|
-
|
258
|
-
|
256
|
+
safe_attach_function :NetLocalGroupSetMembers, %i{
|
257
|
+
LPCWSTR LPCWSTR DWORD LPBYTE DWORD
|
258
|
+
}, :DWORD
|
259
259
|
|
260
260
|
# NET_API_STATUS NetLocalGroupDelMembers(
|
261
261
|
# _In_ LPCWSTR servername,
|
@@ -264,9 +264,9 @@ class Chef
|
|
264
264
|
# _In_ LPBYTE buf,
|
265
265
|
# _In_ DWORD totalentries
|
266
266
|
# );
|
267
|
-
safe_attach_function :NetLocalGroupDelMembers,
|
268
|
-
|
269
|
-
|
267
|
+
safe_attach_function :NetLocalGroupDelMembers, %i{
|
268
|
+
LPCWSTR LPCWSTR DWORD LPBYTE DWORD
|
269
|
+
}, :DWORD
|
270
270
|
|
271
271
|
# NET_API_STATUS NetUserGetInfo(
|
272
272
|
# _In_ LPCWSTR servername,
|
@@ -274,9 +274,9 @@ class Chef
|
|
274
274
|
# _In_ DWORD level,
|
275
275
|
# _Out_ LPBYTE *bufptr
|
276
276
|
# );
|
277
|
-
safe_attach_function :NetUserGetInfo,
|
278
|
-
|
279
|
-
|
277
|
+
safe_attach_function :NetUserGetInfo, %i{
|
278
|
+
LPCWSTR LPCWSTR DWORD LPBYTE
|
279
|
+
}, :DWORD
|
280
280
|
|
281
281
|
# NET_API_STATUS NetApiBufferFree(
|
282
282
|
# _In_ LPVOID Buffer
|
@@ -290,22 +290,22 @@ class Chef
|
|
290
290
|
# _In_ LPBYTE buf,
|
291
291
|
# _Out_ LPDWORD parm_err
|
292
292
|
# );
|
293
|
-
safe_attach_function :NetUserSetInfo,
|
294
|
-
|
295
|
-
|
293
|
+
safe_attach_function :NetUserSetInfo, %i{
|
294
|
+
LPCWSTR LPCWSTR DWORD LPBYTE LPDWORD
|
295
|
+
}, :DWORD
|
296
296
|
|
297
297
|
# NET_API_STATUS NetUserDel(
|
298
298
|
# _In_ LPCWSTR servername,
|
299
299
|
# _In_ LPCWSTR username
|
300
300
|
# );
|
301
|
-
safe_attach_function :NetUserDel,
|
301
|
+
safe_attach_function :NetUserDel, %i{LPCWSTR LPCWSTR}, :DWORD
|
302
302
|
|
303
303
|
# NET_API_STATUS NetUseDel(
|
304
304
|
# _In_ LMSTR UncServerName,
|
305
305
|
# _In_ LMSTR UseName,
|
306
306
|
# _In_ DWORD ForceCond
|
307
307
|
# );
|
308
|
-
safe_attach_function :NetUseDel,
|
308
|
+
safe_attach_function :NetUseDel, %i{LMSTR LMSTR DWORD}, :DWORD
|
309
309
|
|
310
310
|
# NET_API_STATUS NetUseGetInfo(
|
311
311
|
# _In_ LMSTR UncServerName,
|
@@ -313,7 +313,7 @@ class Chef
|
|
313
313
|
# _In_ DWORD Level,
|
314
314
|
# _Out_ LPBYTE *BufPtr
|
315
315
|
# );
|
316
|
-
safe_attach_function :NetUseGetInfo,
|
316
|
+
safe_attach_function :NetUseGetInfo, %i{LMSTR LMSTR DWORD pointer}, :DWORD
|
317
317
|
|
318
318
|
# NET_API_STATUS NetUseAdd(
|
319
319
|
# _In_ LMSTR UncServerName,
|
@@ -321,7 +321,7 @@ class Chef
|
|
321
321
|
# _In_ LPBYTE Buf,
|
322
322
|
# _Out_ LPDWORD ParmError
|
323
323
|
# );
|
324
|
-
safe_attach_function :NetUseAdd,
|
324
|
+
safe_attach_function :NetUseAdd, %i{LMSTR DWORD LPBYTE LPDWORD}, :DWORD
|
325
325
|
end
|
326
326
|
end
|
327
327
|
end
|