chef 14.14.14 → 14.14.25
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/lib/chef/cookbook/gem_installer.rb +2 -1
- data/lib/chef/knife.rb +11 -1
- data/lib/chef/knife/cookbook_metadata_from_file.rb +1 -1
- data/lib/chef/knife/ssh.rb +1 -1
- data/lib/chef/provider/ifconfig.rb +6 -4
- data/lib/chef/provider/user.rb +1 -1
- data/lib/chef/provider/windows_task.rb +2 -2
- data/lib/chef/version.rb +1 -1
- data/lib/chef/win32/system.rb +0 -0
- data/spec/unit/cookbook/gem_installer_spec.rb +2 -2
- data/spec/unit/provider/ifconfig_spec.rb +11 -0
- data/spec/unit/provider/user_spec.rb +38 -22
- data/spec/unit/provider/windows_task_spec.rb +6 -1
- metadata +6 -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/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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f9eaae19a63a8cff9278ec4d58c2900d1abfdfc9f2c882328a1fd405b38e66e
|
4
|
+
data.tar.gz: 139bd109c7ebb0025cb2535e9bc98e89b0cabae3f31552a614454c87304b3629
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b78137d16d8a95b383192c1cd38c77bc9292457f8aa8d2fcf57d256605620ded1c72eab56f42ce258bcf47f39f2372ea61d4b7976f515ee1109b4d3383b31114
|
7
|
+
data.tar.gz: 29ea5757e164fad7d3f45859451e1f4cd70ffdc064c0b41e3f79735e3f4a327e579018e2fd98a0a36533498121048b25f1faea15edc8f150ff63676be61e1088
|
@@ -69,7 +69,8 @@ class Chef
|
|
69
69
|
# Skip installation only if Chef::Config[:skip_gem_metadata_installation] option is true
|
70
70
|
unless Chef::Config[:skip_gem_metadata_installation]
|
71
71
|
# Add additional options to bundle install
|
72
|
-
cmd =
|
72
|
+
cmd = "bundle install"
|
73
|
+
cmd += " #{Chef::Config[:gem_installer_bundler_options]}" if Chef::Config[:gem_installer_bundler_options]
|
73
74
|
so = shell_out!(cmd, cwd: dir, env: { "PATH" => path_with_prepended_ruby_bin })
|
74
75
|
Chef::Log.info(so.stdout)
|
75
76
|
end
|
data/lib/chef/knife.rb
CHANGED
@@ -63,6 +63,12 @@ class Chef
|
|
63
63
|
attr_accessor :name_args
|
64
64
|
attr_accessor :ui
|
65
65
|
|
66
|
+
# knife acl subcommands are grouped in this category using this constant to verify.
|
67
|
+
OPSCODE_HOSTED_CHEF_ACCESS_CONTROL = %w{acl group user}.freeze
|
68
|
+
|
69
|
+
# knife opc subcommands are grouped in this category using this constant to verify.
|
70
|
+
CHEF_ORGANIZATION_MANAGEMENT = %w{opc}.freeze
|
71
|
+
|
66
72
|
# Configure mixlib-cli to always separate defaults from user-supplied CLI options
|
67
73
|
def self.use_separate_defaults?
|
68
74
|
true
|
@@ -269,7 +275,11 @@ class Chef
|
|
269
275
|
ui.info("If this is a recently installed plugin, please run 'knife rehash' to update the subcommands cache.")
|
270
276
|
end
|
271
277
|
|
272
|
-
if
|
278
|
+
if CHEF_ORGANIZATION_MANAGEMENT.include?(args[0])
|
279
|
+
list_commands("CHEF ORGANIZATION MANAGEMENT")
|
280
|
+
elsif OPSCODE_HOSTED_CHEF_ACCESS_CONTROL.include?(args[0])
|
281
|
+
list_commands("OPSCODE HOSTED CHEF ACCESS CONTROL")
|
282
|
+
elsif category_commands = guess_category(args)
|
273
283
|
list_commands(category_commands)
|
274
284
|
elsif OFFICIAL_PLUGINS.include?(args[0]) # command was an uninstalled official chef knife plugin
|
275
285
|
ui.info("Use `chef gem install knife-#{args[0]}` to install the plugin into ChefDK")
|
data/lib/chef/knife/ssh.rb
CHANGED
@@ -108,19 +108,21 @@ class Chef
|
|
108
108
|
# RX errors 0 dropped 0 overruns 0 frame 0
|
109
109
|
# TX packets 1244218 bytes 977339327 (932.0 MiB)
|
110
110
|
# TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
|
111
|
+
#
|
112
|
+
# Permalink for addr_regex : https://rubular.com/r/JrykUpfjRnYeQD
|
111
113
|
@status = shell_out("ifconfig")
|
112
114
|
@status.stdout.each_line do |line|
|
113
|
-
addr_regex = /^(\w+):?(\d*):?\ .+$/
|
115
|
+
addr_regex = /^(\w+)(-?):?(\d*):?\ .+$/
|
114
116
|
if line =~ addr_regex
|
115
117
|
if line.match(addr_regex).nil?
|
116
118
|
@int_name = "nil"
|
117
|
-
elsif line.match(addr_regex)[
|
119
|
+
elsif line.match(addr_regex)[3] == ""
|
118
120
|
@int_name = line.match(addr_regex)[1]
|
119
121
|
@interfaces[@int_name] = Hash.new
|
120
122
|
@interfaces[@int_name]["mtu"] = (line =~ /mtu (\S+)/ ? Regexp.last_match(1) : "nil") if line =~ /mtu/ && @interfaces[@int_name]["mtu"].nil?
|
121
123
|
else
|
122
|
-
@int_name = "#{line.match(addr_regex)[1]}:#{line.match(addr_regex)[
|
123
|
-
@interfaces[@int_name] =
|
124
|
+
@int_name = "#{line.match(addr_regex)[1]}:#{line.match(addr_regex)[3]}"
|
125
|
+
@interfaces[@int_name] = {}
|
124
126
|
@interfaces[@int_name]["mtu"] = (line =~ /mtu (\S+)/ ? Regexp.last_match(1) : "nil") if line =~ /mtu/ && @interfaces[@int_name]["mtu"].nil?
|
125
127
|
end
|
126
128
|
else
|
data/lib/chef/provider/user.rb
CHANGED
@@ -444,7 +444,7 @@ class Chef
|
|
444
444
|
def days_of_month
|
445
445
|
days_of_month = []
|
446
446
|
if new_resource.day
|
447
|
-
days = new_resource.day.split(",")
|
447
|
+
days = new_resource.day.to_s.split(",")
|
448
448
|
days.map! { |day| day.to_s.strip.upcase }
|
449
449
|
days.delete("LAST") if days.include?("LAST")
|
450
450
|
days.delete("LASTDAY") if days.include?("LASTDAY")
|
@@ -464,7 +464,7 @@ class Chef
|
|
464
464
|
if new_resource.day
|
465
465
|
# this line of code is just to support backward compatibility of wild card *
|
466
466
|
new_resource.day = "mon, tue, wed, thu, fri, sat, sun" if new_resource.day == "*" && new_resource.frequency == :weekly
|
467
|
-
days = new_resource.day.split(",")
|
467
|
+
days = new_resource.day.to_s.split(",")
|
468
468
|
days.map! { |day| day.to_s.strip.upcase }
|
469
469
|
weeks_days = get_binary_values_from_constants(days, DAYS_OF_WEEK)
|
470
470
|
else
|
data/lib/chef/version.rb
CHANGED
data/lib/chef/win32/system.rb
CHANGED
File without changes
|
@@ -1,5 +1,5 @@
|
|
1
1
|
require "spec_helper"
|
2
|
-
require "bundler
|
2
|
+
require "bundler"
|
3
3
|
|
4
4
|
describe Chef::Cookbook::GemInstaller do
|
5
5
|
let(:cookbook_collection) do
|
@@ -106,7 +106,7 @@ describe Chef::Cookbook::GemInstaller do
|
|
106
106
|
|
107
107
|
it "install from local cache when Chef::Config[:gem_installer_bundler_options] is set to local" do
|
108
108
|
Chef::Config[:gem_installer_bundler_options] = "--local"
|
109
|
-
expect(gem_installer).to receive(:shell_out!).with(
|
109
|
+
expect(gem_installer).to receive(:shell_out!).with("bundle install --local", any_args).and_return(shell_out)
|
110
110
|
expect(Chef::Log).to receive(:info).and_return("")
|
111
111
|
expect(gem_installer.install).to be_empty
|
112
112
|
end
|
@@ -94,6 +94,17 @@ EOS
|
|
94
94
|
expect(@new_resource).not_to be_updated
|
95
95
|
end
|
96
96
|
|
97
|
+
it "should add a bridge interface" do
|
98
|
+
allow(@provider).to receive(:load_current_resource)
|
99
|
+
@new_resource.device "br-1234"
|
100
|
+
command = "ifconfig br-1234 10.0.0.1 netmask 255.255.254.0 metric 1 mtu 1500"
|
101
|
+
expect(@provider).to receive(:shell_out_compacted!).with(*command.split(" "))
|
102
|
+
expect(@provider).to receive(:generate_config)
|
103
|
+
|
104
|
+
@provider.run_action(:add)
|
105
|
+
expect(@new_resource).to be_updated
|
106
|
+
end
|
107
|
+
|
97
108
|
# We are not testing this case with the assumption that anyone writing the cookbook would not make a typo == lo
|
98
109
|
# it "should add a blank command if the #{@new_resource.device} == lo" do
|
99
110
|
# end
|
@@ -444,35 +444,51 @@ describe Chef::Provider::User do
|
|
444
444
|
|
445
445
|
describe "convert_group_name" do
|
446
446
|
before do
|
447
|
-
@new_resource.gid("999")
|
448
447
|
@group = EtcGrnamIsh.new("wheel", "*", 999, [])
|
449
448
|
end
|
450
449
|
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
450
|
+
context "when user passes group name in gid" do
|
451
|
+
before do
|
452
|
+
@new_resource.gid("wheel")
|
453
|
+
end
|
455
454
|
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
455
|
+
it "should lookup the group name locally" do
|
456
|
+
expect(Etc).to receive(:getgrnam).with("wheel").and_return(@group)
|
457
|
+
expect(@provider.convert_group_name).to eq(999)
|
458
|
+
end
|
459
|
+
|
460
|
+
it "should raise an error if we can't translate the group name during resource assertions" do
|
461
|
+
expect(Etc).to receive(:getgrnam).and_raise(ArgumentError)
|
462
|
+
@provider.action = :create
|
463
|
+
@provider.define_resource_requirements
|
464
|
+
@provider.convert_group_name
|
465
|
+
expect { @provider.process_resource_requirements }.to raise_error(Chef::Exceptions::User)
|
466
|
+
end
|
463
467
|
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
468
|
+
it "does not raise an error if we can't translate the group name during resource assertions if we are removing the user" do
|
469
|
+
expect(Etc).to receive(:getgrnam).and_raise(ArgumentError)
|
470
|
+
@provider.action = :remove
|
471
|
+
@provider.define_resource_requirements
|
472
|
+
@provider.convert_group_name
|
473
|
+
expect { @provider.process_resource_requirements }.not_to raise_error
|
474
|
+
end
|
475
|
+
|
476
|
+
it "should set the new resources gid to the integerized version if available" do
|
477
|
+
expect(Etc).to receive(:getgrnam).with("wheel").and_return(@group)
|
478
|
+
@provider.convert_group_name
|
479
|
+
expect(@new_resource.gid).to eq(999)
|
480
|
+
end
|
470
481
|
end
|
471
482
|
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
483
|
+
context "when user passes group id in gid" do
|
484
|
+
before do
|
485
|
+
@new_resource.gid(999)
|
486
|
+
end
|
487
|
+
|
488
|
+
it "should not call getgrnam" do
|
489
|
+
expect(Etc).not_to receive(:getgrnam)
|
490
|
+
@provider.convert_group_name
|
491
|
+
end
|
476
492
|
end
|
477
493
|
end
|
478
494
|
end
|
@@ -265,11 +265,16 @@ describe Chef::Provider::WindowsTask, :windows_only do
|
|
265
265
|
|
266
266
|
# REF: https://msdn.microsoft.com/en-us/library/windows/desktop/aa382063(v=vs.85).aspx
|
267
267
|
describe "#days_of_month" do
|
268
|
-
it "returns the binary value 1 if day is set as 1" do
|
268
|
+
it "returns the binary value 1 if day is set as string 1" do
|
269
269
|
new_resource.day "1"
|
270
270
|
expect(provider.send(:days_of_month)).to eq(1)
|
271
271
|
end
|
272
272
|
|
273
|
+
it "returns the binary value 1 if day is set as integer 1" do
|
274
|
+
new_resource.day 1
|
275
|
+
expect(provider.send(:days_of_month)).to eq(1)
|
276
|
+
end
|
277
|
+
|
273
278
|
it "returns the binary value 2 if day is set as 2" do
|
274
279
|
new_resource.day "2"
|
275
280
|
expect(provider.send(:days_of_month)).to eq(2)
|
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: 14.14.
|
4
|
+
version: 14.14.25
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Jacob
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-10-
|
11
|
+
date: 2019-10-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: chef-config
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 14.14.
|
19
|
+
version: 14.14.25
|
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: 14.14.
|
26
|
+
version: 14.14.25
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: mixlib-cli
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -497,9 +497,7 @@ files:
|
|
497
497
|
- bin/knife
|
498
498
|
- chef-universal-mingw32.gemspec
|
499
499
|
- chef.gemspec
|
500
|
-
- lib/.DS_Store
|
501
500
|
- lib/chef.rb
|
502
|
-
- lib/chef/.DS_Store
|
503
501
|
- lib/chef/api_client.rb
|
504
502
|
- lib/chef/api_client/registration.rb
|
505
503
|
- lib/chef/api_client_v1.rb
|
@@ -660,7 +658,6 @@ files:
|
|
660
658
|
- lib/chef/deprecation/warnings.rb
|
661
659
|
- lib/chef/digester.rb
|
662
660
|
- lib/chef/dsl.rb
|
663
|
-
- lib/chef/dsl/.DS_Store
|
664
661
|
- lib/chef/dsl/audit.rb
|
665
662
|
- lib/chef/dsl/chef_provisioning.rb
|
666
663
|
- lib/chef/dsl/cheffish.rb
|
@@ -748,7 +745,6 @@ files:
|
|
748
745
|
- lib/chef/json_compat.rb
|
749
746
|
- lib/chef/key.rb
|
750
747
|
- lib/chef/knife.rb
|
751
|
-
- lib/chef/knife/.DS_Store
|
752
748
|
- lib/chef/knife/bootstrap.rb
|
753
749
|
- lib/chef/knife/bootstrap/chef_vault_handler.rb
|
754
750
|
- lib/chef/knife/bootstrap/client_builder.rb
|
@@ -904,7 +900,6 @@ files:
|
|
904
900
|
- lib/chef/log/syslog.rb
|
905
901
|
- lib/chef/log/winevt.rb
|
906
902
|
- lib/chef/mash.rb
|
907
|
-
- lib/chef/mixin/.DS_Store
|
908
903
|
- lib/chef/mixin/api_version_request_handling.rb
|
909
904
|
- lib/chef/mixin/checksum.rb
|
910
905
|
- lib/chef/mixin/convert_to_class_name.rb
|
@@ -977,7 +972,6 @@ files:
|
|
977
972
|
- lib/chef/powershell.rb
|
978
973
|
- lib/chef/property.rb
|
979
974
|
- lib/chef/provider.rb
|
980
|
-
- lib/chef/provider/.DS_Store
|
981
975
|
- lib/chef/provider/apt_preference.rb
|
982
976
|
- lib/chef/provider/apt_repository.rb
|
983
977
|
- lib/chef/provider/apt_update.rb
|
@@ -1024,7 +1018,6 @@ files:
|
|
1024
1018
|
- lib/chef/provider/ohai.rb
|
1025
1019
|
- lib/chef/provider/osx_profile.rb
|
1026
1020
|
- lib/chef/provider/package.rb
|
1027
|
-
- lib/chef/provider/package/.DS_Store
|
1028
1021
|
- lib/chef/provider/package/apt.rb
|
1029
1022
|
- lib/chef/provider/package/bff.rb
|
1030
1023
|
- lib/chef/provider/package/cab.rb
|
@@ -1034,7 +1027,6 @@ files:
|
|
1034
1027
|
- lib/chef/provider/package/dnf/python_helper.rb
|
1035
1028
|
- lib/chef/provider/package/dnf/version.rb
|
1036
1029
|
- lib/chef/provider/package/dpkg.rb
|
1037
|
-
- lib/chef/provider/package/freebsd/.DS_Store
|
1038
1030
|
- lib/chef/provider/package/freebsd/base.rb
|
1039
1031
|
- lib/chef/provider/package/freebsd/pkg.rb
|
1040
1032
|
- lib/chef/provider/package/freebsd/pkgng.rb
|
@@ -1136,7 +1128,6 @@ files:
|
|
1136
1128
|
- lib/chef/request_id.rb
|
1137
1129
|
- lib/chef/reserved_names.rb
|
1138
1130
|
- lib/chef/resource.rb
|
1139
|
-
- lib/chef/resource/.DS_Store
|
1140
1131
|
- lib/chef/resource/action_class.rb
|
1141
1132
|
- lib/chef/resource/apt_package.rb
|
1142
1133
|
- lib/chef/resource/apt_preference.rb
|
@@ -1168,7 +1159,6 @@ files:
|
|
1168
1159
|
- lib/chef/resource/dsc_script.rb
|
1169
1160
|
- lib/chef/resource/execute.rb
|
1170
1161
|
- lib/chef/resource/file.rb
|
1171
|
-
- lib/chef/resource/file/.DS_Store
|
1172
1162
|
- lib/chef/resource/file/verification.rb
|
1173
1163
|
- lib/chef/resource/file/verification/systemd_unit.rb
|
1174
1164
|
- lib/chef/resource/freebsd_package.rb
|
@@ -1378,8 +1368,6 @@ files:
|
|
1378
1368
|
- lib/chef/win32/version.rb
|
1379
1369
|
- lib/chef/win32_service_constants.rb
|
1380
1370
|
- lib/chef/workstation_config_loader.rb
|
1381
|
-
- spec/.DS_Store
|
1382
|
-
- spec/data/.DS_Store
|
1383
1371
|
- spec/data/apt/chef-integration-test-1.0/debian/changelog
|
1384
1372
|
- spec/data/apt/chef-integration-test-1.0/debian/compat
|
1385
1373
|
- spec/data/apt/chef-integration-test-1.0/debian/control
|
@@ -1477,7 +1465,6 @@ files:
|
|
1477
1465
|
- spec/data/client.d_01/foo/bar.rb
|
1478
1466
|
- spec/data/client.d_02/foo.rb/foo.txt
|
1479
1467
|
- spec/data/config.rb
|
1480
|
-
- spec/data/cookbooks/.DS_Store
|
1481
1468
|
- spec/data/cookbooks/angrybash/metadata.rb
|
1482
1469
|
- spec/data/cookbooks/angrybash/recipes/default.rb
|
1483
1470
|
- spec/data/cookbooks/apache2/files/default/apache2_module_conf_generate.pl
|
@@ -1492,8 +1479,6 @@ files:
|
|
1492
1479
|
- spec/data/cookbooks/ignorken/recipes/default.rb
|
1493
1480
|
- spec/data/cookbooks/ignorken/recipes/ignoreme.rb
|
1494
1481
|
- spec/data/cookbooks/ignorken/templates/ubuntu-12.10/not_me.rb
|
1495
|
-
- spec/data/cookbooks/java/.DS_Store
|
1496
|
-
- spec/data/cookbooks/java/files/.DS_Store
|
1497
1482
|
- spec/data/cookbooks/java/files/default/java.response
|
1498
1483
|
- spec/data/cookbooks/java/metadata.rb
|
1499
1484
|
- spec/data/cookbooks/name-mismatch-versionnumber/README.md
|
@@ -1590,7 +1575,6 @@ files:
|
|
1590
1575
|
- spec/data/lwrp_const_scoping/resources/conflict.rb
|
1591
1576
|
- spec/data/lwrp_override/providers/buck_passer.rb
|
1592
1577
|
- spec/data/lwrp_override/resources/foo.rb
|
1593
|
-
- spec/data/mac_users/.DS_Store
|
1594
1578
|
- spec/data/mac_users/10.7-8.plist.xml
|
1595
1579
|
- spec/data/mac_users/10.7-8.shadow.xml
|
1596
1580
|
- spec/data/mac_users/10.7.plist.xml
|
@@ -1603,8 +1587,6 @@ files:
|
|
1603
1587
|
- spec/data/mixin/invalid_data.rb
|
1604
1588
|
- spec/data/mixin/real_data.rb
|
1605
1589
|
- spec/data/nested.json
|
1606
|
-
- spec/data/nodes/Tim.local.json
|
1607
|
-
- spec/data/nodes/Tims-MBP.local.json
|
1608
1590
|
- spec/data/nodes/default.rb
|
1609
1591
|
- spec/data/nodes/test.example.com.rb
|
1610
1592
|
- spec/data/nodes/test.rb
|
@@ -1641,8 +1623,6 @@ files:
|
|
1641
1623
|
- spec/data/root_alias_cookbooks/simple/attributes.rb
|
1642
1624
|
- spec/data/root_alias_cookbooks/simple/metadata.rb
|
1643
1625
|
- spec/data/root_alias_cookbooks/simple/recipe.rb
|
1644
|
-
- spec/data/run_context/.DS_Store
|
1645
|
-
- spec/data/run_context/cookbooks/.DS_Store
|
1646
1626
|
- spec/data/run_context/cookbooks/circular-dep1/attributes/default.rb
|
1647
1627
|
- spec/data/run_context/cookbooks/circular-dep1/definitions/circular_dep1_res.rb
|
1648
1628
|
- spec/data/run_context/cookbooks/circular-dep1/libraries/lib.rb
|
@@ -1735,7 +1715,6 @@ files:
|
|
1735
1715
|
- spec/data/windows_certificates/test.p7b
|
1736
1716
|
- spec/data/windows_certificates/test.pem
|
1737
1717
|
- spec/data/windows_certificates/test.pfx
|
1738
|
-
- spec/functional/.DS_Store
|
1739
1718
|
- spec/functional/application_spec.rb
|
1740
1719
|
- spec/functional/assets/PkgA.1.0.0.0.bff
|
1741
1720
|
- spec/functional/assets/PkgA.2.0.0.0.bff
|
@@ -1809,7 +1788,6 @@ files:
|
|
1809
1788
|
- spec/functional/provider/remote_file/cache_control_data_spec.rb
|
1810
1789
|
- spec/functional/provider/whyrun_safe_ruby_block_spec.rb
|
1811
1790
|
- spec/functional/rebooter_spec.rb
|
1812
|
-
- spec/functional/resource/.DS_Store
|
1813
1791
|
- spec/functional/resource/aix_service_spec.rb
|
1814
1792
|
- spec/functional/resource/aixinit_service_spec.rb
|
1815
1793
|
- spec/functional/resource/apt_package_spec.rb
|
@@ -1857,7 +1835,6 @@ files:
|
|
1857
1835
|
- spec/functional/run_lock_spec.rb
|
1858
1836
|
- spec/functional/shell_spec.rb
|
1859
1837
|
- spec/functional/tiny_server_spec.rb
|
1860
|
-
- spec/functional/util/.DS_Store
|
1861
1838
|
- spec/functional/util/path_helper_spec.rb
|
1862
1839
|
- spec/functional/util/powershell/cmdlet_spec.rb
|
1863
1840
|
- spec/functional/version_spec.rb
|
@@ -1868,7 +1845,6 @@ files:
|
|
1868
1845
|
- spec/functional/win32/sid_spec.rb
|
1869
1846
|
- spec/functional/win32/version_info_spec.rb
|
1870
1847
|
- spec/functional/win32/versions_spec.rb
|
1871
|
-
- spec/integration/.DS_Store
|
1872
1848
|
- spec/integration/client/client_spec.rb
|
1873
1849
|
- spec/integration/client/exit_code_spec.rb
|
1874
1850
|
- spec/integration/client/ipv6_spec.rb
|
@@ -1952,11 +1928,9 @@ files:
|
|
1952
1928
|
- spec/rcov.opts
|
1953
1929
|
- spec/scripts/ssl-serve.rb
|
1954
1930
|
- spec/spec_helper.rb
|
1955
|
-
- spec/stress/.DS_Store
|
1956
1931
|
- spec/stress/win32/file_spec.rb
|
1957
1932
|
- spec/stress/win32/memory_spec.rb
|
1958
1933
|
- spec/stress/win32/security_spec.rb
|
1959
|
-
- spec/support/.DS_Store
|
1960
1934
|
- spec/support/chef_helpers.rb
|
1961
1935
|
- spec/support/key_helpers.rb
|
1962
1936
|
- spec/support/lib/chef/provider/easy.rb
|
@@ -2011,7 +1985,6 @@ files:
|
|
2011
1985
|
- spec/support/shared/unit/user_and_client_shared.rb
|
2012
1986
|
- spec/support/shared/unit/windows_script_resource.rb
|
2013
1987
|
- spec/tiny_server.rb
|
2014
|
-
- spec/unit/.DS_Store
|
2015
1988
|
- spec/unit/api_client/registration_spec.rb
|
2016
1989
|
- spec/unit/api_client_spec.rb
|
2017
1990
|
- spec/unit/api_client_v1_spec.rb
|
@@ -2575,7 +2548,6 @@ files:
|
|
2575
2548
|
- spec/unit/win32/registry_spec.rb
|
2576
2549
|
- spec/unit/win32/security_spec.rb
|
2577
2550
|
- spec/unit/windows_service_spec.rb
|
2578
|
-
- tasks/.DS_Store
|
2579
2551
|
- tasks/announce.rb
|
2580
2552
|
- tasks/bin/run_external_test
|
2581
2553
|
- tasks/dependencies.rb
|
@@ -2602,7 +2574,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
2602
2574
|
- !ruby/object:Gem::Version
|
2603
2575
|
version: '0'
|
2604
2576
|
requirements: []
|
2605
|
-
|
2577
|
+
rubyforge_project:
|
2578
|
+
rubygems_version: 2.7.9
|
2606
2579
|
signing_key:
|
2607
2580
|
specification_version: 4
|
2608
2581
|
summary: A systems integration framework, built to bring the benefits of configuration
|
data/lib/.DS_Store
DELETED
Binary file
|
data/lib/chef/.DS_Store
DELETED
Binary file
|
data/lib/chef/dsl/.DS_Store
DELETED
Binary file
|
data/lib/chef/knife/.DS_Store
DELETED
Binary file
|
data/lib/chef/mixin/.DS_Store
DELETED
Binary file
|
data/lib/chef/provider/.DS_Store
DELETED
Binary file
|
Binary file
|
Binary file
|
data/lib/chef/resource/.DS_Store
DELETED
Binary file
|
Binary file
|
data/spec/.DS_Store
DELETED
Binary file
|
data/spec/data/.DS_Store
DELETED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/spec/functional/.DS_Store
DELETED
Binary file
|
Binary file
|
Binary file
|
data/spec/integration/.DS_Store
DELETED
Binary file
|
data/spec/stress/.DS_Store
DELETED
Binary file
|
data/spec/support/.DS_Store
DELETED
Binary file
|
data/spec/unit/.DS_Store
DELETED
Binary file
|
data/tasks/.DS_Store
DELETED
Binary file
|