chef 15.11.8-universal-mingw32 → 15.16.2-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/Gemfile +12 -13
- data/README.md +3 -3
- data/Rakefile +11 -17
- data/chef-universal-mingw32.gemspec +4 -4
- data/chef.gemspec +25 -7
- data/distro/powershell/chef/chef.psm1 +3 -3
- data/distro/templates/powershell/chef/chef.psm1.erb +3 -3
- data/lib/chef/api_client/registration.rb +2 -2
- data/lib/chef/application/apply.rb +1 -1
- data/lib/chef/chef_fs/file_system/repository/base_file.rb +1 -0
- data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_cookbook_dir.rb +2 -2
- data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_cookbook_entry.rb +1 -1
- data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_root_dir.rb +2 -2
- data/lib/chef/chef_fs/file_system/repository/directory.rb +1 -1
- data/lib/chef/chef_fs/file_system/repository/file_system_entry.rb +1 -1
- data/lib/chef/chef_fs/path_utils.rb +3 -3
- data/lib/chef/cookbook/file_system_file_vendor.rb +1 -1
- data/lib/chef/data_bag.rb +2 -2
- data/lib/chef/data_collector/error_handlers.rb +1 -1
- data/lib/chef/deprecated.rb +12 -0
- data/lib/chef/dsl/declare_resource.rb +1 -1
- data/lib/chef/dsl/platform_introspection.rb +2 -0
- data/lib/chef/environment.rb +2 -2
- data/lib/chef/exceptions.rb +3 -0
- data/lib/chef/http.rb +2 -1
- data/lib/chef/knife/bootstrap.rb +6 -9
- data/lib/chef/knife/bootstrap/templates/chef-full.erb +9 -9
- data/lib/chef/knife/bootstrap/train_connector.rb +1 -0
- data/lib/chef/knife/cookbook_download.rb +1 -1
- data/lib/chef/knife/cookbook_metadata.rb +1 -1
- data/lib/chef/knife/core/gem_glob_loader.rb +1 -1
- data/lib/chef/knife/core/hashed_command_loader.rb +3 -2
- data/lib/chef/knife/core/subcommand_loader.rb +1 -1
- data/lib/chef/knife/exec.rb +2 -2
- data/lib/chef/knife/ssh.rb +20 -1
- data/lib/chef/log.rb +1 -1
- data/lib/chef/mixin/openssl_helper.rb +26 -3
- data/lib/chef/mixin/template.rb +1 -0
- data/lib/chef/node_map.rb +5 -2
- data/lib/chef/provider/mount/solaris.rb +0 -1
- data/lib/chef/provider/package/cab.rb +1 -1
- data/lib/chef/provider/package/chocolatey.rb +1 -1
- data/lib/chef/provider/package/dnf/dnf_helper.py +5 -0
- data/lib/chef/provider/package/freebsd/pkgng.rb +3 -1
- data/lib/chef/provider/package/msu.rb +1 -0
- data/lib/chef/provider/package/powershell.rb +5 -1
- data/lib/chef/provider/package/snap.rb +96 -27
- data/lib/chef/provider/package/yum/yum_helper.py +4 -0
- data/lib/chef/provider/package/zypper.rb +0 -1
- data/lib/chef/provider/service/arch.rb +2 -2
- data/lib/chef/provider/service/debian.rb +1 -1
- data/lib/chef/provider/service/gentoo.rb +2 -2
- data/lib/chef/provider/service/macosx.rb +2 -2
- data/lib/chef/provider/service/openbsd.rb +1 -1
- data/lib/chef/provider/service/redhat.rb +2 -2
- data/lib/chef/provider/service/upstart.rb +1 -1
- data/lib/chef/provider/yum_repository.rb +1 -1
- data/lib/chef/provider/zypper_repository.rb +31 -11
- data/lib/chef/resource.rb +2 -0
- data/lib/chef/resource/archive_file.rb +28 -8
- data/lib/chef/resource/cron_access.rb +13 -5
- data/lib/chef/resource/cron_d.rb +2 -1
- data/lib/chef/resource/homebrew_cask.rb +3 -3
- data/lib/chef/resource/hostname.rb +19 -18
- data/lib/chef/resource/locale.rb +1 -1
- data/lib/chef/resource/lwrp_base.rb +7 -0
- data/lib/chef/resource/msu_package.rb +5 -0
- data/lib/chef/resource/ssh_known_hosts_entry.rb +1 -1
- data/lib/chef/resource/sudo.rb +2 -2
- data/lib/chef/resource/windows_feature_powershell.rb +6 -2
- data/lib/chef/resource/windows_font.rb +2 -1
- data/lib/chef/role.rb +2 -2
- data/lib/chef/shell.rb +32 -1
- data/lib/chef/shell/shell_session.rb +2 -0
- data/lib/chef/util/diff.rb +1 -1
- data/lib/chef/util/dsc/configuration_generator.rb +1 -1
- data/lib/chef/util/powershell/cmdlet.rb +1 -1
- data/lib/chef/version.rb +2 -2
- data/lib/chef/version_string.rb +1 -1
- data/lib/chef/win32/file.rb +2 -2
- data/spec/functional/knife/ssh_spec.rb +4 -4
- data/spec/functional/resource/aix_service_spec.rb +0 -1
- data/spec/functional/resource/aixinit_service_spec.rb +7 -8
- data/spec/functional/resource/apt_package_spec.rb +0 -1
- data/spec/functional/resource/bff_spec.rb +2 -2
- data/spec/functional/resource/cookbook_file_spec.rb +1 -1
- data/spec/functional/resource/cron_spec.rb +0 -1
- data/spec/functional/resource/dsc_resource_spec.rb +1 -1
- data/spec/functional/resource/insserv_spec.rb +4 -5
- data/spec/functional/resource/link_spec.rb +17 -17
- data/spec/functional/resource/msu_package_spec.rb +5 -2
- data/spec/functional/resource/rpm_spec.rb +2 -2
- data/spec/functional/resource/user/dscl_spec.rb +1 -1
- data/spec/functional/resource/user/mac_user_spec.rb +1 -1
- data/spec/functional/resource/windows_certificate_spec.rb +3 -3
- data/spec/functional/resource/windows_font_spec.rb +49 -0
- data/spec/functional/resource/windows_task_spec.rb +8 -8
- data/spec/functional/run_lock_spec.rb +2 -1
- data/spec/functional/shell_spec.rb +5 -5
- data/spec/functional/util/powershell/cmdlet_spec.rb +1 -1
- data/spec/functional/version_spec.rb +1 -1
- data/spec/functional/win32/service_manager_spec.rb +1 -1
- data/spec/integration/recipes/accumulator_spec.rb +1 -1
- data/spec/integration/recipes/lwrp_inline_resources_spec.rb +2 -2
- data/spec/integration/recipes/lwrp_spec.rb +1 -1
- data/spec/integration/recipes/notifies_spec.rb +1 -1
- data/spec/integration/recipes/notifying_block_spec.rb +1 -1
- data/spec/integration/recipes/recipe_dsl_spec.rb +1 -1
- data/spec/integration/recipes/resource_converge_if_changed_spec.rb +2 -0
- data/spec/integration/recipes/resource_load_spec.rb +1 -0
- data/spec/integration/recipes/unified_mode_spec.rb +1 -1
- data/spec/scripts/ssl-serve.rb +1 -1
- data/spec/spec_helper.rb +10 -8
- data/spec/support/platform_helpers.rb +12 -42
- data/spec/support/platforms/win32/spec_service.rb +1 -1
- data/spec/support/shared/functional/directory_resource.rb +1 -1
- data/spec/support/shared/functional/execute_resource.rb +1 -1
- data/spec/support/shared/functional/file_resource.rb +2 -2
- data/spec/support/shared/functional/win32_service.rb +1 -1
- data/spec/support/shared/functional/windows_script.rb +3 -3
- data/spec/support/shared/integration/knife_support.rb +2 -5
- data/spec/unit/application_spec.rb +7 -0
- data/spec/unit/chef_fs/file_system/operation_failed_error_spec.rb +2 -4
- data/spec/unit/cookbook/gem_installer_spec.rb +2 -1
- data/spec/unit/data_bag_spec.rb +1 -1
- data/spec/unit/dsl/platform_introspection_spec.rb +1 -0
- data/spec/unit/environment_spec.rb +7 -7
- data/spec/unit/event_dispatch/dispatcher_spec.rb +3 -0
- data/spec/unit/knife/bootstrap_spec.rb +16 -16
- data/spec/unit/knife/cookbook_download_spec.rb +4 -4
- data/spec/unit/knife/cookbook_metadata_from_file_spec.rb +1 -1
- data/spec/unit/knife/cookbook_upload_spec.rb +5 -6
- data/spec/unit/knife/core/hashed_command_loader_spec.rb +3 -3
- data/spec/unit/knife/ssh_spec.rb +2 -2
- data/spec/unit/knife/supermarket_share_spec.rb +5 -3
- data/spec/unit/lwrp_spec.rb +4 -4
- data/spec/unit/mixin/securable_spec.rb +0 -1
- data/spec/unit/mixin/user_context_spec.rb +1 -9
- data/spec/unit/property_spec.rb +6 -6
- data/spec/unit/provider/package/dnf/python_helper_spec.rb +1 -1
- data/spec/unit/provider/package/freebsd/pkgng_spec.rb +1 -1
- data/spec/unit/provider/package/powershell_spec.rb +95 -86
- data/spec/unit/provider/package/rubygems_spec.rb +5 -10
- data/spec/unit/provider/package/snap_spec.rb +1 -1
- data/spec/unit/provider/package/windows_spec.rb +30 -53
- data/spec/unit/provider/service/arch_service_spec.rb +3 -2
- data/spec/unit/provider/service/debian_service_spec.rb +1 -1
- data/spec/unit/provider/service/gentoo_service_spec.rb +7 -7
- data/spec/unit/provider/service/macosx_spec.rb +3 -3
- data/spec/unit/provider/service/redhat_spec.rb +2 -2
- data/spec/unit/provider/service/upstart_service_spec.rb +3 -3
- data/spec/unit/provider/service/windows_spec.rb +2 -6
- data/spec/unit/provider/systemd_unit_spec.rb +28 -24
- data/spec/unit/provider/zypper_repository_spec.rb +75 -25
- data/spec/unit/provider_spec.rb +1 -0
- data/spec/unit/resource/archive_file_spec.rb +11 -2
- data/spec/unit/resource/msu_package_spec.rb +4 -0
- data/spec/unit/resource/windows_dns_record_spec.rb +3 -3
- data/spec/unit/resource/windows_dns_zone_spec.rb +2 -2
- data/spec/unit/resource/windows_feature_powershell_spec.rb +30 -4
- data/spec/unit/resource/windows_package_spec.rb +1 -0
- data/spec/unit/resource/windows_task_spec.rb +1 -1
- data/spec/unit/resource/windows_uac_spec.rb +2 -2
- data/spec/unit/resource/yum_repository_spec.rb +21 -21
- data/spec/unit/resource_spec.rb +1 -1
- data/spec/unit/role_spec.rb +11 -11
- data/spec/unit/run_context/cookbook_compiler_spec.rb +1 -1
- data/spec/unit/util/threaded_job_queue_spec.rb +9 -0
- data/spec/unit/win32/security_spec.rb +4 -3
- metadata +64 -39
data/spec/unit/provider_spec.rb
CHANGED
@@ -18,8 +18,11 @@
|
|
18
18
|
require "spec_helper"
|
19
19
|
|
20
20
|
describe Chef::Resource::ArchiveFile do
|
21
|
-
|
22
|
-
let(:
|
21
|
+
let(:node) { Chef::Node.new }
|
22
|
+
let(:events) { Chef::EventDispatch::Dispatcher.new }
|
23
|
+
let(:run_context) { Chef::RunContext.new(node, {}, events) }
|
24
|
+
let(:resource) { Chef::Resource::ArchiveFile.new("foo", run_context) }
|
25
|
+
let(:provider) { resource.provider_for_action(:extract) }
|
23
26
|
|
24
27
|
it "has a resource name of :archive_file" do
|
25
28
|
expect(resource.resource_name).to eql(:archive_file)
|
@@ -41,6 +44,12 @@ describe Chef::Resource::ArchiveFile do
|
|
41
44
|
expect(resource.mode).to eql("755")
|
42
45
|
end
|
43
46
|
|
47
|
+
it "mode property throws a deprecation warning if Integers are passed" do
|
48
|
+
expect(Chef::Log).to receive(:deprecation)
|
49
|
+
resource.mode 755
|
50
|
+
provider.define_resource_requirements
|
51
|
+
end
|
52
|
+
|
44
53
|
it "options property defaults to [:time]" do
|
45
54
|
expect(resource.options).to eql([:time])
|
46
55
|
end
|
@@ -29,15 +29,15 @@ describe Chef::Resource::WindowsDnsRecord do
|
|
29
29
|
end
|
30
30
|
|
31
31
|
it "the record_type property accepts 'CNAME'" do
|
32
|
-
expect { resource.record_type "CNAME" }.not_to raise_error
|
32
|
+
expect { resource.record_type "CNAME" }.not_to raise_error
|
33
33
|
end
|
34
34
|
|
35
35
|
it "the record_type property accepts 'ARecord'" do
|
36
|
-
expect { resource.record_type "ARecord" }.not_to raise_error
|
36
|
+
expect { resource.record_type "ARecord" }.not_to raise_error
|
37
37
|
end
|
38
38
|
|
39
39
|
it "the record_type property accepts 'PTR'" do
|
40
|
-
expect { resource.record_type "PTR" }.not_to raise_error
|
40
|
+
expect { resource.record_type "PTR" }.not_to raise_error
|
41
41
|
end
|
42
42
|
|
43
43
|
it "the resource raises an ArgumentError if invalid record_type is set" do
|
@@ -29,11 +29,11 @@ describe Chef::Resource::WindowsDnsZone do
|
|
29
29
|
end
|
30
30
|
|
31
31
|
it "the server_type property accepts 'Standalone'" do
|
32
|
-
expect { resource.server_type "Standalone" }.not_to raise_error
|
32
|
+
expect { resource.server_type "Standalone" }.not_to raise_error
|
33
33
|
end
|
34
34
|
|
35
35
|
it "the server_type property accepts 'Domain'" do
|
36
|
-
expect { resource.server_type "Domain" }.not_to raise_error
|
36
|
+
expect { resource.server_type "Domain" }.not_to raise_error
|
37
37
|
end
|
38
38
|
|
39
39
|
it "the resource raises an ArgumentError if invalid server_type is set" do
|
@@ -22,6 +22,7 @@ describe Chef::Resource::WindowsFeaturePowershell do
|
|
22
22
|
let(:events) { Chef::EventDispatch::Dispatcher.new }
|
23
23
|
let(:run_context) { Chef::RunContext.new(node, {}, events) }
|
24
24
|
let(:resource) { Chef::Resource::WindowsFeaturePowershell.new(%w{SNMP DHCP}, run_context) }
|
25
|
+
let(:provider) { resource.provider_for_action(:install) }
|
25
26
|
|
26
27
|
it "sets resource name as :windows_feature_powershell" do
|
27
28
|
expect(resource.resource_name).to eql(:windows_feature_powershell)
|
@@ -36,10 +37,6 @@ describe Chef::Resource::WindowsFeaturePowershell do
|
|
36
37
|
expect(resource.feature_name).to eql(%w{snmp dhcp})
|
37
38
|
end
|
38
39
|
|
39
|
-
it "sets the default action as :install" do
|
40
|
-
expect(resource.action).to eql([:install])
|
41
|
-
end
|
42
|
-
|
43
40
|
it "supports :delete, :install, :remove actions" do
|
44
41
|
expect { resource.action :delete }.not_to raise_error
|
45
42
|
expect { resource.action :install }.not_to raise_error
|
@@ -69,4 +66,33 @@ describe Chef::Resource::WindowsFeaturePowershell do
|
|
69
66
|
resource.feature_name "SNMP"
|
70
67
|
expect(resource.feature_name).to eql(["SNMP"])
|
71
68
|
end
|
69
|
+
|
70
|
+
it "install a single feature" do
|
71
|
+
resource.feature_name "snmp"
|
72
|
+
expect { resource.action :install }.not_to raise_error
|
73
|
+
end
|
74
|
+
|
75
|
+
it "install multi feature" do
|
76
|
+
resource.feature_name "SNMP, DHCP"
|
77
|
+
expect { resource.action :install }.not_to raise_error
|
78
|
+
end
|
79
|
+
|
80
|
+
it "does not attempt to install features that have been removed" do
|
81
|
+
node.default["powershell_features_cache"] ||= {}
|
82
|
+
node.default["powershell_features_cache"]["disabled"] = ["dhcp"]
|
83
|
+
node.default["powershell_features_cache"]["removed"] = ["snmp"]
|
84
|
+
resource.feature_name "dhcp, snmp"
|
85
|
+
|
86
|
+
expect(provider.features_to_install).to eq(["dhcp"])
|
87
|
+
end
|
88
|
+
|
89
|
+
it "attempts to install features that have been removed when source is set" do
|
90
|
+
node.default["powershell_features_cache"] ||= {}
|
91
|
+
node.default["powershell_features_cache"]["disabled"] = ["dhcp"]
|
92
|
+
node.default["powershell_features_cache"]["removed"] = ["snmp"]
|
93
|
+
resource.feature_name "dhcp, snmp"
|
94
|
+
resource.source 'D:\\sources\\sxs'
|
95
|
+
|
96
|
+
expect(provider.features_to_install).to eq(%w{dhcp snmp})
|
97
|
+
end
|
72
98
|
end
|
@@ -58,6 +58,7 @@ describe Chef::Resource::WindowsPackage, "initialize" do
|
|
58
58
|
expect { resource.installer_type :msi }.not_to raise_error
|
59
59
|
expect { resource.installer_type :nsis }.not_to raise_error
|
60
60
|
expect { resource.installer_type :wise }.not_to raise_error
|
61
|
+
expect { resource.installer_type :something_else_entirely }.to raise_error(Chef::Exceptions::ValidationFailed)
|
61
62
|
expect { resource.installer_type "msi" }.to raise_error(Chef::Exceptions::ValidationFailed)
|
62
63
|
end
|
63
64
|
|
@@ -144,7 +144,7 @@ describe Chef::Resource::WindowsTask, :windows_only do
|
|
144
144
|
resource.frequency :once
|
145
145
|
resource.random_delay "20"
|
146
146
|
resource.start_time "15:00"
|
147
|
-
expect { resource.after_created }.to_not raise_error
|
147
|
+
expect { resource.after_created }.to_not raise_error
|
148
148
|
end
|
149
149
|
|
150
150
|
it "raises error for invalid random_delay" do
|
@@ -26,7 +26,7 @@ describe Chef::Resource::WindowsUac do
|
|
26
26
|
|
27
27
|
%i{no_prompt secure_prompt_for_creds secure_prompt_for_consent prompt_for_creds prompt_for_consent prompt_for_consent_non_windows_binaries}.each do |val|
|
28
28
|
it "the consent_behavior_admins property accepts :#{val}" do
|
29
|
-
expect { resource.consent_behavior_admins val }.not_to raise_error
|
29
|
+
expect { resource.consent_behavior_admins val }.not_to raise_error
|
30
30
|
end
|
31
31
|
end
|
32
32
|
|
@@ -36,7 +36,7 @@ describe Chef::Resource::WindowsUac do
|
|
36
36
|
|
37
37
|
%i{auto_deny secure_prompt_for_creds prompt_for_creds}.each do |val|
|
38
38
|
it "the consent_behavior_users property accepts :#{val}" do
|
39
|
-
expect { resource.consent_behavior_users val }.not_to raise_error
|
39
|
+
expect { resource.consent_behavior_users val }.not_to raise_error
|
40
40
|
end
|
41
41
|
end
|
42
42
|
|
@@ -73,52 +73,52 @@ describe Chef::Resource::YumRepository do
|
|
73
73
|
end
|
74
74
|
|
75
75
|
it "the timeout property expects numeric Strings" do
|
76
|
-
expect { resource.timeout "123" }.not_to raise_error
|
76
|
+
expect { resource.timeout "123" }.not_to raise_error
|
77
77
|
expect { resource.timeout "123foo" }.to raise_error(ArgumentError)
|
78
78
|
end
|
79
79
|
|
80
80
|
it "the priority property expects numeric Strings from '1' to '99'" do
|
81
|
-
expect { resource.priority "99" }.not_to raise_error
|
82
|
-
expect { resource.priority "1" }.not_to raise_error
|
81
|
+
expect { resource.priority "99" }.not_to raise_error
|
82
|
+
expect { resource.priority "1" }.not_to raise_error
|
83
83
|
expect { resource.priority "100" }.to raise_error(ArgumentError)
|
84
84
|
expect { resource.priority "0" }.to raise_error(ArgumentError)
|
85
85
|
end
|
86
86
|
|
87
87
|
it "the failovermethod property accepts 'priority' or 'roundrobin'" do
|
88
|
-
expect { resource.failovermethod "priority" }.not_to raise_error
|
89
|
-
expect { resource.failovermethod "roundrobin" }.not_to raise_error
|
88
|
+
expect { resource.failovermethod "priority" }.not_to raise_error
|
89
|
+
expect { resource.failovermethod "roundrobin" }.not_to raise_error
|
90
90
|
expect { resource.failovermethod "bob" }.to raise_error(ArgumentError)
|
91
91
|
end
|
92
92
|
|
93
93
|
it "the http_caching property accepts 'packages', 'all', or 'none'" do
|
94
|
-
expect { resource.http_caching "packages" }.not_to raise_error
|
95
|
-
expect { resource.http_caching "all" }.not_to raise_error
|
96
|
-
expect { resource.http_caching "none" }.not_to raise_error
|
94
|
+
expect { resource.http_caching "packages" }.not_to raise_error
|
95
|
+
expect { resource.http_caching "all" }.not_to raise_error
|
96
|
+
expect { resource.http_caching "none" }.not_to raise_error
|
97
97
|
expect { resource.http_caching "bob" }.to raise_error(ArgumentError)
|
98
98
|
end
|
99
99
|
|
100
100
|
it "the metadata_expire property accepts a time value or 'never'" do
|
101
|
-
expect { resource.metadata_expire "100" }.not_to raise_error
|
102
|
-
expect { resource.metadata_expire "100d" }.not_to raise_error
|
103
|
-
expect { resource.metadata_expire "100h" }.not_to raise_error
|
104
|
-
expect { resource.metadata_expire "100m" }.not_to raise_error
|
105
|
-
expect { resource.metadata_expire "never" }.not_to raise_error
|
101
|
+
expect { resource.metadata_expire "100" }.not_to raise_error
|
102
|
+
expect { resource.metadata_expire "100d" }.not_to raise_error
|
103
|
+
expect { resource.metadata_expire "100h" }.not_to raise_error
|
104
|
+
expect { resource.metadata_expire "100m" }.not_to raise_error
|
105
|
+
expect { resource.metadata_expire "never" }.not_to raise_error
|
106
106
|
expect { resource.metadata_expire "100s" }.to raise_error(ArgumentError)
|
107
107
|
end
|
108
108
|
|
109
109
|
it "the mirror_expire property accepts a time value" do
|
110
|
-
expect { resource.mirror_expire "100" }.not_to raise_error
|
111
|
-
expect { resource.mirror_expire "100d" }.not_to raise_error
|
112
|
-
expect { resource.mirror_expire "100h" }.not_to raise_error
|
113
|
-
expect { resource.mirror_expire "100m" }.not_to raise_error
|
110
|
+
expect { resource.mirror_expire "100" }.not_to raise_error
|
111
|
+
expect { resource.mirror_expire "100d" }.not_to raise_error
|
112
|
+
expect { resource.mirror_expire "100h" }.not_to raise_error
|
113
|
+
expect { resource.mirror_expire "100m" }.not_to raise_error
|
114
114
|
expect { resource.mirror_expire "never" }.to raise_error(ArgumentError)
|
115
115
|
end
|
116
116
|
|
117
117
|
it "the mirrorlist_expire property accepts a time value" do
|
118
|
-
expect { resource.mirrorlist_expire "100" }.not_to raise_error
|
119
|
-
expect { resource.mirrorlist_expire "100d" }.not_to raise_error
|
120
|
-
expect { resource.mirrorlist_expire "100h" }.not_to raise_error
|
121
|
-
expect { resource.mirrorlist_expire "100m" }.not_to raise_error
|
118
|
+
expect { resource.mirrorlist_expire "100" }.not_to raise_error
|
119
|
+
expect { resource.mirrorlist_expire "100d" }.not_to raise_error
|
120
|
+
expect { resource.mirrorlist_expire "100h" }.not_to raise_error
|
121
|
+
expect { resource.mirrorlist_expire "100m" }.not_to raise_error
|
122
122
|
expect { resource.mirrorlist_expire "never" }.to raise_error(ArgumentError)
|
123
123
|
end
|
124
124
|
|
data/spec/unit/resource_spec.rb
CHANGED
@@ -378,7 +378,7 @@ describe Chef::Resource do
|
|
378
378
|
it "does not propagate validation errors" do
|
379
379
|
resource_class = Class.new(Chef::Resource) { property :foo, String, required: true }
|
380
380
|
resource = resource_class.new("required_property_tests")
|
381
|
-
expect { resource.to_text }.to_not raise_error
|
381
|
+
expect { resource.to_text }.to_not raise_error
|
382
382
|
end
|
383
383
|
end
|
384
384
|
end
|
data/spec/unit/role_spec.rb
CHANGED
@@ -259,7 +259,7 @@ describe Chef::Role do
|
|
259
259
|
it "should return a Chef::Role object from JSON" do
|
260
260
|
expect(Dir).to receive(:glob).and_return(["#{Chef::Config[:role_path]}/memes", "#{Chef::Config[:role_path]}/memes/lolcat.json"])
|
261
261
|
file_path = File.join(Chef::Config[:role_path], "memes/lolcat.json")
|
262
|
-
expect(File).to receive(:
|
262
|
+
expect(File).to receive(:exist?).with(file_path).exactly(1).times.and_return(true)
|
263
263
|
expect(IO).to receive(:read).with(file_path).and_return('{"name": "ceiling_cat", "json_class": "Chef::Role" }')
|
264
264
|
expect(@role).to be_a_kind_of(Chef::Role)
|
265
265
|
@role.class.from_disk("lolcat")
|
@@ -268,7 +268,7 @@ describe Chef::Role do
|
|
268
268
|
it "should return a Chef::Role object from a Ruby DSL" do
|
269
269
|
expect(Dir).to receive(:glob).and_return(["#{Chef::Config[:role_path]}/memes", "#{Chef::Config[:role_path]}/memes/lolcat.rb"])
|
270
270
|
rb_path = File.join(Chef::Config[:role_path], "memes/lolcat.rb")
|
271
|
-
expect(File).to receive(:
|
271
|
+
expect(File).to receive(:exist?).with(rb_path).exactly(1).times.and_return(true)
|
272
272
|
expect(File).to receive(:readable?).with(rb_path).exactly(1).times.and_return(true)
|
273
273
|
expect(File).to receive(:file?).with(rb_path).exactly(1).times.and_return(true)
|
274
274
|
expect(IO).to receive(:read).with(rb_path).and_return(ROLE_DSL)
|
@@ -280,8 +280,8 @@ describe Chef::Role do
|
|
280
280
|
expect(Dir).to receive(:glob).and_return(["#{Chef::Config[:role_path]}/memes", "#{Chef::Config[:role_path]}/memes/lolcat.json", "#{Chef::Config[:role_path]}/memes/lolcat.rb"])
|
281
281
|
js_path = File.join(Chef::Config[:role_path], "memes/lolcat.json")
|
282
282
|
rb_path = File.join(Chef::Config[:role_path], "memes/lolcat.rb")
|
283
|
-
expect(File).to receive(:
|
284
|
-
expect(File).not_to receive(:
|
283
|
+
expect(File).to receive(:exist?).with(js_path).exactly(1).times.and_return(true)
|
284
|
+
expect(File).not_to receive(:exist?).with(rb_path)
|
285
285
|
expect(IO).to receive(:read).with(js_path).and_return('{"name": "ceiling_cat", "json_class": "Chef::Role" }')
|
286
286
|
expect(@role).to be_a_kind_of(Chef::Role)
|
287
287
|
@role.class.from_disk("lolcat")
|
@@ -289,19 +289,19 @@ describe Chef::Role do
|
|
289
289
|
|
290
290
|
it "should raise an exception if the file does not exist" do
|
291
291
|
expect(Dir).to receive(:glob).and_return(["#{Chef::Config[:role_path]}/meme.rb"])
|
292
|
-
expect(File).not_to receive(:
|
292
|
+
expect(File).not_to receive(:exist?)
|
293
293
|
expect { @role.class.from_disk("lolcat") }.to raise_error(Chef::Exceptions::RoleNotFound)
|
294
294
|
end
|
295
295
|
|
296
296
|
it "should raise an exception if two files exist with the same name" do
|
297
297
|
expect(Dir).to receive(:glob).and_return(["#{Chef::Config[:role_path]}/memes/lolcat.rb", "#{Chef::Config[:role_path]}/lolcat.rb"])
|
298
|
-
expect(File).not_to receive(:
|
298
|
+
expect(File).not_to receive(:exist?)
|
299
299
|
expect { @role.class.from_disk("lolcat") }.to raise_error(Chef::Exceptions::DuplicateRole)
|
300
300
|
end
|
301
301
|
|
302
302
|
it "should not raise an exception if two files exist with a similar name" do
|
303
303
|
expect(Dir).to receive(:glob).and_return(["#{Chef::Config[:role_path]}/memes/lolcat.rb", "#{Chef::Config[:role_path]}/super_lolcat.rb"])
|
304
|
-
expect(File).to receive(:
|
304
|
+
expect(File).to receive(:exist?).with("#{Chef::Config[:role_path]}/memes/lolcat.rb").and_return(true)
|
305
305
|
allow_any_instance_of(Chef::Role).to receive(:from_file).with("#{Chef::Config[:role_path]}/memes/lolcat.rb")
|
306
306
|
expect { @role.class.from_disk("lolcat") }.not_to raise_error
|
307
307
|
end
|
@@ -315,7 +315,7 @@ describe Chef::Role do
|
|
315
315
|
|
316
316
|
it "should return a Chef::Role object from JSON" do
|
317
317
|
expect(Dir).to receive(:glob).with(File.join("/path1", "**", "**")).exactly(1).times.and_return(["/path1/lolcat.json"])
|
318
|
-
expect(File).to receive(:
|
318
|
+
expect(File).to receive(:exist?).with("/path1/lolcat.json").exactly(1).times.and_return(true)
|
319
319
|
expect(IO).to receive(:read).with("/path1/lolcat.json").and_return('{"name": "ceiling_cat", "json_class": "Chef::Role" }')
|
320
320
|
expect(@role).to be_a_kind_of(Chef::Role)
|
321
321
|
@role.class.from_disk("lolcat")
|
@@ -324,7 +324,7 @@ describe Chef::Role do
|
|
324
324
|
it "should return a Chef::Role object from JSON when role is in the second path" do
|
325
325
|
expect(Dir).to receive(:glob).with(File.join("/path1", "**", "**")).exactly(1).times.and_return([])
|
326
326
|
expect(Dir).to receive(:glob).with(File.join("/path/path2", "**", "**")).exactly(1).times.and_return(["/path/path2/lolcat.json"])
|
327
|
-
expect(File).to receive(:
|
327
|
+
expect(File).to receive(:exist?).with("/path/path2/lolcat.json").exactly(1).times.and_return(true)
|
328
328
|
expect(IO).to receive(:read).with("/path/path2/lolcat.json").and_return('{"name": "ceiling_cat", "json_class": "Chef::Role" }')
|
329
329
|
expect(@role).to be_a_kind_of(Chef::Role)
|
330
330
|
@role.class.from_disk("lolcat")
|
@@ -332,7 +332,7 @@ describe Chef::Role do
|
|
332
332
|
|
333
333
|
it "should return a Chef::Role object from a Ruby DSL" do
|
334
334
|
expect(Dir).to receive(:glob).with(File.join("/path1", "**", "**")).exactly(1).times.and_return(["/path1/lolcat.rb"])
|
335
|
-
expect(File).to receive(:
|
335
|
+
expect(File).to receive(:exist?).with("/path1/lolcat.rb").exactly(1).times.and_return(true)
|
336
336
|
expect(File).to receive(:readable?).with("/path1/lolcat.rb").and_return(true)
|
337
337
|
expect(File).to receive(:file?).with("/path1/lolcat.rb").and_return(true)
|
338
338
|
expect(IO).to receive(:read).with("/path1/lolcat.rb").exactly(1).times.and_return(ROLE_DSL)
|
@@ -343,7 +343,7 @@ describe Chef::Role do
|
|
343
343
|
it "should return a Chef::Role object from a Ruby DSL when role is in the second path" do
|
344
344
|
expect(Dir).to receive(:glob).with(File.join("/path1", "**", "**")).exactly(1).times.and_return([])
|
345
345
|
expect(Dir).to receive(:glob).with(File.join("/path/path2", "**", "**")).exactly(1).times.and_return(["/path/path2/lolcat.rb"])
|
346
|
-
expect(File).to receive(:
|
346
|
+
expect(File).to receive(:exist?).with("/path/path2/lolcat.rb").exactly(1).times.and_return(true)
|
347
347
|
expect(File).to receive(:readable?).with("/path/path2/lolcat.rb").and_return(true)
|
348
348
|
expect(File).to receive(:file?).with("/path/path2/lolcat.rb").and_return(true)
|
349
349
|
expect(IO).to receive(:read).with("/path/path2/lolcat.rb").exactly(1).times.and_return(ROLE_DSL)
|
@@ -175,7 +175,7 @@ describe Chef::RunContext::CookbookCompiler do
|
|
175
175
|
describe "event dispatch" do
|
176
176
|
let(:recipe) { "dependency1::default" }
|
177
177
|
let(:recipe_path) do
|
178
|
-
File.expand_path("
|
178
|
+
File.expand_path("../../data/run_context/cookbooks/dependency1/recipes/default.rb", __dir__)
|
179
179
|
end
|
180
180
|
before do
|
181
181
|
node.run_list(recipe)
|
@@ -21,6 +21,15 @@ end
|
|
21
21
|
describe Chef::Util::ThreadedJobQueue do
|
22
22
|
let(:queue) { Chef::Util::ThreadedJobQueue.new }
|
23
23
|
|
24
|
+
around(:example) do |example|
|
25
|
+
old_value = Thread.report_on_exception
|
26
|
+
Thread.report_on_exception = false
|
27
|
+
|
28
|
+
example.run
|
29
|
+
|
30
|
+
Thread.report_on_exception = old_value
|
31
|
+
end
|
32
|
+
|
24
33
|
it "should pass mutex to jobs with an arity of 1" do
|
25
34
|
job = double
|
26
35
|
expect(job).to receive(:arity).at_least(:once).and_return(1)
|
@@ -81,9 +81,10 @@ describe "Chef::Win32::Security", :windows_only do
|
|
81
81
|
|
82
82
|
context "when the user has admin privileges" do
|
83
83
|
it "returns true" do
|
84
|
-
|
85
|
-
token = Chef::ReservedNames::Win32::Security.open_current_process_token
|
84
|
+
token = double(:process_token)
|
86
85
|
allow(token).to receive_message_chain(:handle, :handle)
|
86
|
+
|
87
|
+
allow(Chef::ReservedNames::Win32::Security).to receive(:open_current_process_token).and_return(token)
|
87
88
|
allow(Chef::ReservedNames::Win32::Security).to receive(:get_token_information_elevation_type)
|
88
89
|
allow(Chef::ReservedNames::Win32::Security).to receive(:GetTokenInformation).and_return(true)
|
89
90
|
allow_any_instance_of(FFI::Buffer).to receive(:read_ulong).and_return(1)
|
@@ -128,7 +129,7 @@ describe "Chef::Win32::Security", :windows_only do
|
|
128
129
|
context "when FFI::LastError.error result is not ERROR_INSUFFICIENT_BUFFER and not NO_ERROR" do
|
129
130
|
it "raises Chef::ReservedNames::Win32::Error.raise! exception" do
|
130
131
|
expect(FFI::LastError).to receive(:error).and_return(123).at_least(:once)
|
131
|
-
expect { security_class.lookup_account_name "system" }.to raise_error
|
132
|
+
expect { security_class.lookup_account_name "system" }.to raise_error(Chef::Exceptions::Win32APIError)
|
132
133
|
end
|
133
134
|
end
|
134
135
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chef
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 15.
|
4
|
+
version: 15.16.2
|
5
5
|
platform: universal-mingw32
|
6
6
|
authors:
|
7
7
|
- Adam Jacob
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-03-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: chef-config
|
@@ -16,28 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 15.
|
19
|
+
version: 15.16.2
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 15.
|
26
|
+
version: 15.16.2
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: chef-utils
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 15.
|
33
|
+
version: 15.16.2
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 15.
|
40
|
+
version: 15.16.2
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: train-core
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -76,22 +76,22 @@ dependencies:
|
|
76
76
|
name: license-acceptance
|
77
77
|
requirement: !ruby/object:Gem::Requirement
|
78
78
|
requirements:
|
79
|
-
- - "~>"
|
80
|
-
- !ruby/object:Gem::Version
|
81
|
-
version: '1.0'
|
82
79
|
- - ">="
|
83
80
|
- !ruby/object:Gem::Version
|
84
81
|
version: 1.0.5
|
82
|
+
- - "<"
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '3'
|
85
85
|
type: :runtime
|
86
86
|
prerelease: false
|
87
87
|
version_requirements: !ruby/object:Gem::Requirement
|
88
88
|
requirements:
|
89
|
-
- - "~>"
|
90
|
-
- !ruby/object:Gem::Version
|
91
|
-
version: '1.0'
|
92
89
|
- - ">="
|
93
90
|
- !ruby/object:Gem::Version
|
94
91
|
version: 1.0.5
|
92
|
+
- - "<"
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '3'
|
95
95
|
- !ruby/object:Gem::Dependency
|
96
96
|
name: mixlib-cli
|
97
97
|
requirement: !ruby/object:Gem::Requirement
|
@@ -249,7 +249,7 @@ dependencies:
|
|
249
249
|
version: '4.2'
|
250
250
|
- - "<"
|
251
251
|
- !ruby/object:Gem::Version
|
252
|
-
version: '
|
252
|
+
version: '7'
|
253
253
|
type: :runtime
|
254
254
|
prerelease: false
|
255
255
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -259,7 +259,7 @@ dependencies:
|
|
259
259
|
version: '4.2'
|
260
260
|
- - "<"
|
261
261
|
- !ruby/object:Gem::Version
|
262
|
-
version: '
|
262
|
+
version: '7'
|
263
263
|
- !ruby/object:Gem::Dependency
|
264
264
|
name: net-ssh-multi
|
265
265
|
requirement: !ruby/object:Gem::Requirement
|
@@ -284,22 +284,22 @@ dependencies:
|
|
284
284
|
name: net-sftp
|
285
285
|
requirement: !ruby/object:Gem::Requirement
|
286
286
|
requirements:
|
287
|
-
- - "~>"
|
288
|
-
- !ruby/object:Gem::Version
|
289
|
-
version: '2.1'
|
290
287
|
- - ">="
|
291
288
|
- !ruby/object:Gem::Version
|
292
289
|
version: 2.1.2
|
290
|
+
- - "<"
|
291
|
+
- !ruby/object:Gem::Version
|
292
|
+
version: '4.0'
|
293
293
|
type: :runtime
|
294
294
|
prerelease: false
|
295
295
|
version_requirements: !ruby/object:Gem::Requirement
|
296
296
|
requirements:
|
297
|
-
- - "~>"
|
298
|
-
- !ruby/object:Gem::Version
|
299
|
-
version: '2.1'
|
300
297
|
- - ">="
|
301
298
|
- !ruby/object:Gem::Version
|
302
299
|
version: 2.1.2
|
300
|
+
- - "<"
|
301
|
+
- !ruby/object:Gem::Version
|
302
|
+
version: '4.0'
|
303
303
|
- !ruby/object:Gem::Dependency
|
304
304
|
name: ed25519
|
305
305
|
requirement: !ruby/object:Gem::Requirement
|
@@ -337,7 +337,7 @@ dependencies:
|
|
337
337
|
version: 1.6.9
|
338
338
|
- - "<"
|
339
339
|
- !ruby/object:Gem::Version
|
340
|
-
version: '
|
340
|
+
version: '3'
|
341
341
|
type: :runtime
|
342
342
|
prerelease: false
|
343
343
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -347,7 +347,7 @@ dependencies:
|
|
347
347
|
version: 1.6.9
|
348
348
|
- - "<"
|
349
349
|
- !ruby/object:Gem::Version
|
350
|
-
version: '
|
350
|
+
version: '3'
|
351
351
|
- !ruby/object:Gem::Dependency
|
352
352
|
name: tty-screen
|
353
353
|
requirement: !ruby/object:Gem::Requirement
|
@@ -380,36 +380,42 @@ dependencies:
|
|
380
380
|
name: diff-lcs
|
381
381
|
requirement: !ruby/object:Gem::Requirement
|
382
382
|
requirements:
|
383
|
-
- - "~>"
|
384
|
-
- !ruby/object:Gem::Version
|
385
|
-
version: '1.2'
|
386
383
|
- - ">="
|
387
384
|
- !ruby/object:Gem::Version
|
388
385
|
version: 1.2.4
|
386
|
+
- - "<"
|
387
|
+
- !ruby/object:Gem::Version
|
388
|
+
version: 1.4.0
|
389
389
|
type: :runtime
|
390
390
|
prerelease: false
|
391
391
|
version_requirements: !ruby/object:Gem::Requirement
|
392
392
|
requirements:
|
393
|
-
- - "~>"
|
394
|
-
- !ruby/object:Gem::Version
|
395
|
-
version: '1.2'
|
396
393
|
- - ">="
|
397
394
|
- !ruby/object:Gem::Version
|
398
395
|
version: 1.2.4
|
396
|
+
- - "<"
|
397
|
+
- !ruby/object:Gem::Version
|
398
|
+
version: 1.4.0
|
399
399
|
- !ruby/object:Gem::Dependency
|
400
400
|
name: ffi-libarchive
|
401
401
|
requirement: !ruby/object:Gem::Requirement
|
402
402
|
requirements:
|
403
|
+
- - "~>"
|
404
|
+
- !ruby/object:Gem::Version
|
405
|
+
version: '1.0'
|
403
406
|
- - ">="
|
404
407
|
- !ruby/object:Gem::Version
|
405
|
-
version:
|
408
|
+
version: 1.0.3
|
406
409
|
type: :runtime
|
407
410
|
prerelease: false
|
408
411
|
version_requirements: !ruby/object:Gem::Requirement
|
409
412
|
requirements:
|
413
|
+
- - "~>"
|
414
|
+
- !ruby/object:Gem::Version
|
415
|
+
version: '1.0'
|
410
416
|
- - ">="
|
411
417
|
- !ruby/object:Gem::Version
|
412
|
-
version:
|
418
|
+
version: 1.0.3
|
413
419
|
- !ruby/object:Gem::Dependency
|
414
420
|
name: chef-zero
|
415
421
|
requirement: !ruby/object:Gem::Requirement
|
@@ -484,16 +490,22 @@ dependencies:
|
|
484
490
|
name: uuidtools
|
485
491
|
requirement: !ruby/object:Gem::Requirement
|
486
492
|
requirements:
|
487
|
-
- - "
|
493
|
+
- - ">="
|
488
494
|
- !ruby/object:Gem::Version
|
489
495
|
version: 2.1.5
|
496
|
+
- - "<"
|
497
|
+
- !ruby/object:Gem::Version
|
498
|
+
version: '3.0'
|
490
499
|
type: :runtime
|
491
500
|
prerelease: false
|
492
501
|
version_requirements: !ruby/object:Gem::Requirement
|
493
502
|
requirements:
|
494
|
-
- - "
|
503
|
+
- - ">="
|
495
504
|
- !ruby/object:Gem::Version
|
496
505
|
version: 2.1.5
|
506
|
+
- - "<"
|
507
|
+
- !ruby/object:Gem::Version
|
508
|
+
version: '3.0'
|
497
509
|
- !ruby/object:Gem::Dependency
|
498
510
|
name: proxifier
|
499
511
|
requirement: !ruby/object:Gem::Requirement
|
@@ -612,14 +624,14 @@ dependencies:
|
|
612
624
|
requirements:
|
613
625
|
- - "~>"
|
614
626
|
- !ruby/object:Gem::Version
|
615
|
-
version: 0.
|
627
|
+
version: '0.9'
|
616
628
|
type: :runtime
|
617
629
|
prerelease: false
|
618
630
|
version_requirements: !ruby/object:Gem::Requirement
|
619
631
|
requirements:
|
620
632
|
- - "~>"
|
621
633
|
- !ruby/object:Gem::Version
|
622
|
-
version: 0.
|
634
|
+
version: '0.9'
|
623
635
|
- !ruby/object:Gem::Dependency
|
624
636
|
name: win32-service
|
625
637
|
requirement: !ruby/object:Gem::Requirement
|
@@ -672,30 +684,36 @@ dependencies:
|
|
672
684
|
name: iso8601
|
673
685
|
requirement: !ruby/object:Gem::Requirement
|
674
686
|
requirements:
|
675
|
-
- - "
|
687
|
+
- - ">="
|
676
688
|
- !ruby/object:Gem::Version
|
677
689
|
version: 0.12.1
|
690
|
+
- - "<"
|
691
|
+
- !ruby/object:Gem::Version
|
692
|
+
version: '0.14'
|
678
693
|
type: :runtime
|
679
694
|
prerelease: false
|
680
695
|
version_requirements: !ruby/object:Gem::Requirement
|
681
696
|
requirements:
|
682
|
-
- - "
|
697
|
+
- - ">="
|
683
698
|
- !ruby/object:Gem::Version
|
684
699
|
version: 0.12.1
|
700
|
+
- - "<"
|
701
|
+
- !ruby/object:Gem::Version
|
702
|
+
version: '0.14'
|
685
703
|
- !ruby/object:Gem::Dependency
|
686
704
|
name: win32-certstore
|
687
705
|
requirement: !ruby/object:Gem::Requirement
|
688
706
|
requirements:
|
689
707
|
- - "~>"
|
690
708
|
- !ruby/object:Gem::Version
|
691
|
-
version:
|
709
|
+
version: 0.5.0
|
692
710
|
type: :runtime
|
693
711
|
prerelease: false
|
694
712
|
version_requirements: !ruby/object:Gem::Requirement
|
695
713
|
requirements:
|
696
714
|
- - "~>"
|
697
715
|
- !ruby/object:Gem::Version
|
698
|
-
version:
|
716
|
+
version: 0.5.0
|
699
717
|
description: A systems integration framework, built to bring the benefits of configuration
|
700
718
|
management to your entire infrastructure.
|
701
719
|
email: adam@chef.io
|
@@ -2076,6 +2094,7 @@ files:
|
|
2076
2094
|
- spec/functional/resource/user/windows_spec.rb
|
2077
2095
|
- spec/functional/resource/windows_certificate_spec.rb
|
2078
2096
|
- spec/functional/resource/windows_env_spec.rb
|
2097
|
+
- spec/functional/resource/windows_font_spec.rb
|
2079
2098
|
- spec/functional/resource/windows_package_spec.rb
|
2080
2099
|
- spec/functional/resource/windows_path_spec.rb
|
2081
2100
|
- spec/functional/resource/windows_service_spec.rb
|
@@ -2805,7 +2824,13 @@ files:
|
|
2805
2824
|
homepage: https://www.chef.io
|
2806
2825
|
licenses:
|
2807
2826
|
- Apache-2.0
|
2808
|
-
metadata:
|
2827
|
+
metadata:
|
2828
|
+
bug_tracker_uri: https://github.com/chef/chef/issues
|
2829
|
+
changelog_uri: https://github.com/chef/chef/blob/master/CHANGELOG.md
|
2830
|
+
documentation_uri: https://docs.chef.io/
|
2831
|
+
homepage_uri: https://www.chef.io
|
2832
|
+
mailing_list_uri: https://discourse.chef.io/
|
2833
|
+
source_code_uri: https://github.com/chef/chef/
|
2809
2834
|
post_install_message:
|
2810
2835
|
rdoc_options: []
|
2811
2836
|
require_paths:
|