chef 14.14.14-universal-mingw32 → 14.14.25-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/chef-apply +0 -0
- data/bin/chef-client +0 -0
- data/bin/chef-resource-inspector +0 -0
- data/bin/chef-service-manager +0 -0
- data/bin/chef-shell +0 -0
- data/bin/chef-solo +0 -0
- data/bin/chef-windows-service +0 -0
- data/bin/knife +0 -0
- 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/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/provider/remote_file/cache_control_data_spec.rb +0 -0
- data/spec/functional/resource/aix_service_spec.rb +0 -0
- data/spec/functional/resource/aixinit_service_spec.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
- data/tasks/bin/run_external_test +0 -0
- 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: 9a5e957d884065cd875deb8c9835497ea27aec899ae717d47d2e872ea2c54813
|
4
|
+
data.tar.gz: b6405e9aa26b48d38a39681dca0f6ae9638a5b6103f67e11e28735a3eb234c9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c940099dd3ec238a4df1a8a356685c03a726f9830374bab3aeab4585379412af0ab02066972c9f5541dca5dad566d1d845915682a9af148a532c6b5963b5ea04
|
7
|
+
data.tar.gz: 6028227f5e6142bc61e6007b8c159a092524c440218541bdfe5b3bd1801cf07a30c4a25bc82d20a83b97a0d69d48d4c79fd657b834762b3bf589db89e9c78472
|
data/bin/chef-apply
CHANGED
File without changes
|
data/bin/chef-client
CHANGED
File without changes
|
data/bin/chef-resource-inspector
CHANGED
File without changes
|
data/bin/chef-service-manager
CHANGED
File without changes
|
data/bin/chef-shell
CHANGED
File without changes
|
data/bin/chef-solo
CHANGED
File without changes
|
data/bin/chef-windows-service
CHANGED
File without changes
|
data/bin/knife
CHANGED
File without changes
|
@@ -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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
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)
|
data/tasks/bin/run_external_test
CHANGED
File without changes
|
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: universal-mingw32
|
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
|
@@ -684,9 +684,7 @@ files:
|
|
684
684
|
- distro/ruby_bin_folder/vcruntime140.dll
|
685
685
|
- ext/win32-eventlog/Rakefile
|
686
686
|
- ext/win32-eventlog/chef-log.man
|
687
|
-
- lib/.DS_Store
|
688
687
|
- lib/chef.rb
|
689
|
-
- lib/chef/.DS_Store
|
690
688
|
- lib/chef/api_client.rb
|
691
689
|
- lib/chef/api_client/registration.rb
|
692
690
|
- lib/chef/api_client_v1.rb
|
@@ -847,7 +845,6 @@ files:
|
|
847
845
|
- lib/chef/deprecation/warnings.rb
|
848
846
|
- lib/chef/digester.rb
|
849
847
|
- lib/chef/dsl.rb
|
850
|
-
- lib/chef/dsl/.DS_Store
|
851
848
|
- lib/chef/dsl/audit.rb
|
852
849
|
- lib/chef/dsl/chef_provisioning.rb
|
853
850
|
- lib/chef/dsl/cheffish.rb
|
@@ -935,7 +932,6 @@ files:
|
|
935
932
|
- lib/chef/json_compat.rb
|
936
933
|
- lib/chef/key.rb
|
937
934
|
- lib/chef/knife.rb
|
938
|
-
- lib/chef/knife/.DS_Store
|
939
935
|
- lib/chef/knife/bootstrap.rb
|
940
936
|
- lib/chef/knife/bootstrap/chef_vault_handler.rb
|
941
937
|
- lib/chef/knife/bootstrap/client_builder.rb
|
@@ -1091,7 +1087,6 @@ files:
|
|
1091
1087
|
- lib/chef/log/syslog.rb
|
1092
1088
|
- lib/chef/log/winevt.rb
|
1093
1089
|
- lib/chef/mash.rb
|
1094
|
-
- lib/chef/mixin/.DS_Store
|
1095
1090
|
- lib/chef/mixin/api_version_request_handling.rb
|
1096
1091
|
- lib/chef/mixin/checksum.rb
|
1097
1092
|
- lib/chef/mixin/convert_to_class_name.rb
|
@@ -1164,7 +1159,6 @@ files:
|
|
1164
1159
|
- lib/chef/powershell.rb
|
1165
1160
|
- lib/chef/property.rb
|
1166
1161
|
- lib/chef/provider.rb
|
1167
|
-
- lib/chef/provider/.DS_Store
|
1168
1162
|
- lib/chef/provider/apt_preference.rb
|
1169
1163
|
- lib/chef/provider/apt_repository.rb
|
1170
1164
|
- lib/chef/provider/apt_update.rb
|
@@ -1211,7 +1205,6 @@ files:
|
|
1211
1205
|
- lib/chef/provider/ohai.rb
|
1212
1206
|
- lib/chef/provider/osx_profile.rb
|
1213
1207
|
- lib/chef/provider/package.rb
|
1214
|
-
- lib/chef/provider/package/.DS_Store
|
1215
1208
|
- lib/chef/provider/package/apt.rb
|
1216
1209
|
- lib/chef/provider/package/bff.rb
|
1217
1210
|
- lib/chef/provider/package/cab.rb
|
@@ -1221,7 +1214,6 @@ files:
|
|
1221
1214
|
- lib/chef/provider/package/dnf/python_helper.rb
|
1222
1215
|
- lib/chef/provider/package/dnf/version.rb
|
1223
1216
|
- lib/chef/provider/package/dpkg.rb
|
1224
|
-
- lib/chef/provider/package/freebsd/.DS_Store
|
1225
1217
|
- lib/chef/provider/package/freebsd/base.rb
|
1226
1218
|
- lib/chef/provider/package/freebsd/pkg.rb
|
1227
1219
|
- lib/chef/provider/package/freebsd/pkgng.rb
|
@@ -1323,7 +1315,6 @@ files:
|
|
1323
1315
|
- lib/chef/request_id.rb
|
1324
1316
|
- lib/chef/reserved_names.rb
|
1325
1317
|
- lib/chef/resource.rb
|
1326
|
-
- lib/chef/resource/.DS_Store
|
1327
1318
|
- lib/chef/resource/action_class.rb
|
1328
1319
|
- lib/chef/resource/apt_package.rb
|
1329
1320
|
- lib/chef/resource/apt_preference.rb
|
@@ -1355,7 +1346,6 @@ files:
|
|
1355
1346
|
- lib/chef/resource/dsc_script.rb
|
1356
1347
|
- lib/chef/resource/execute.rb
|
1357
1348
|
- lib/chef/resource/file.rb
|
1358
|
-
- lib/chef/resource/file/.DS_Store
|
1359
1349
|
- lib/chef/resource/file/verification.rb
|
1360
1350
|
- lib/chef/resource/file/verification/systemd_unit.rb
|
1361
1351
|
- lib/chef/resource/freebsd_package.rb
|
@@ -1565,8 +1555,6 @@ files:
|
|
1565
1555
|
- lib/chef/win32/version.rb
|
1566
1556
|
- lib/chef/win32_service_constants.rb
|
1567
1557
|
- lib/chef/workstation_config_loader.rb
|
1568
|
-
- spec/.DS_Store
|
1569
|
-
- spec/data/.DS_Store
|
1570
1558
|
- spec/data/apt/chef-integration-test-1.0/debian/changelog
|
1571
1559
|
- spec/data/apt/chef-integration-test-1.0/debian/compat
|
1572
1560
|
- spec/data/apt/chef-integration-test-1.0/debian/control
|
@@ -1664,7 +1652,6 @@ files:
|
|
1664
1652
|
- spec/data/client.d_01/foo/bar.rb
|
1665
1653
|
- spec/data/client.d_02/foo.rb/foo.txt
|
1666
1654
|
- spec/data/config.rb
|
1667
|
-
- spec/data/cookbooks/.DS_Store
|
1668
1655
|
- spec/data/cookbooks/angrybash/metadata.rb
|
1669
1656
|
- spec/data/cookbooks/angrybash/recipes/default.rb
|
1670
1657
|
- spec/data/cookbooks/apache2/files/default/apache2_module_conf_generate.pl
|
@@ -1679,8 +1666,6 @@ files:
|
|
1679
1666
|
- spec/data/cookbooks/ignorken/recipes/default.rb
|
1680
1667
|
- spec/data/cookbooks/ignorken/recipes/ignoreme.rb
|
1681
1668
|
- spec/data/cookbooks/ignorken/templates/ubuntu-12.10/not_me.rb
|
1682
|
-
- spec/data/cookbooks/java/.DS_Store
|
1683
|
-
- spec/data/cookbooks/java/files/.DS_Store
|
1684
1669
|
- spec/data/cookbooks/java/files/default/java.response
|
1685
1670
|
- spec/data/cookbooks/java/metadata.rb
|
1686
1671
|
- spec/data/cookbooks/name-mismatch-versionnumber/README.md
|
@@ -1777,7 +1762,6 @@ files:
|
|
1777
1762
|
- spec/data/lwrp_const_scoping/resources/conflict.rb
|
1778
1763
|
- spec/data/lwrp_override/providers/buck_passer.rb
|
1779
1764
|
- spec/data/lwrp_override/resources/foo.rb
|
1780
|
-
- spec/data/mac_users/.DS_Store
|
1781
1765
|
- spec/data/mac_users/10.7-8.plist.xml
|
1782
1766
|
- spec/data/mac_users/10.7-8.shadow.xml
|
1783
1767
|
- spec/data/mac_users/10.7.plist.xml
|
@@ -1790,8 +1774,6 @@ files:
|
|
1790
1774
|
- spec/data/mixin/invalid_data.rb
|
1791
1775
|
- spec/data/mixin/real_data.rb
|
1792
1776
|
- spec/data/nested.json
|
1793
|
-
- spec/data/nodes/Tim.local.json
|
1794
|
-
- spec/data/nodes/Tims-MBP.local.json
|
1795
1777
|
- spec/data/nodes/default.rb
|
1796
1778
|
- spec/data/nodes/test.example.com.rb
|
1797
1779
|
- spec/data/nodes/test.rb
|
@@ -1828,8 +1810,6 @@ files:
|
|
1828
1810
|
- spec/data/root_alias_cookbooks/simple/attributes.rb
|
1829
1811
|
- spec/data/root_alias_cookbooks/simple/metadata.rb
|
1830
1812
|
- spec/data/root_alias_cookbooks/simple/recipe.rb
|
1831
|
-
- spec/data/run_context/.DS_Store
|
1832
|
-
- spec/data/run_context/cookbooks/.DS_Store
|
1833
1813
|
- spec/data/run_context/cookbooks/circular-dep1/attributes/default.rb
|
1834
1814
|
- spec/data/run_context/cookbooks/circular-dep1/definitions/circular_dep1_res.rb
|
1835
1815
|
- spec/data/run_context/cookbooks/circular-dep1/libraries/lib.rb
|
@@ -1922,7 +1902,6 @@ files:
|
|
1922
1902
|
- spec/data/windows_certificates/test.p7b
|
1923
1903
|
- spec/data/windows_certificates/test.pem
|
1924
1904
|
- spec/data/windows_certificates/test.pfx
|
1925
|
-
- spec/functional/.DS_Store
|
1926
1905
|
- spec/functional/application_spec.rb
|
1927
1906
|
- spec/functional/assets/PkgA.1.0.0.0.bff
|
1928
1907
|
- spec/functional/assets/PkgA.2.0.0.0.bff
|
@@ -1996,7 +1975,6 @@ files:
|
|
1996
1975
|
- spec/functional/provider/remote_file/cache_control_data_spec.rb
|
1997
1976
|
- spec/functional/provider/whyrun_safe_ruby_block_spec.rb
|
1998
1977
|
- spec/functional/rebooter_spec.rb
|
1999
|
-
- spec/functional/resource/.DS_Store
|
2000
1978
|
- spec/functional/resource/aix_service_spec.rb
|
2001
1979
|
- spec/functional/resource/aixinit_service_spec.rb
|
2002
1980
|
- spec/functional/resource/apt_package_spec.rb
|
@@ -2044,7 +2022,6 @@ files:
|
|
2044
2022
|
- spec/functional/run_lock_spec.rb
|
2045
2023
|
- spec/functional/shell_spec.rb
|
2046
2024
|
- spec/functional/tiny_server_spec.rb
|
2047
|
-
- spec/functional/util/.DS_Store
|
2048
2025
|
- spec/functional/util/path_helper_spec.rb
|
2049
2026
|
- spec/functional/util/powershell/cmdlet_spec.rb
|
2050
2027
|
- spec/functional/version_spec.rb
|
@@ -2055,7 +2032,6 @@ files:
|
|
2055
2032
|
- spec/functional/win32/sid_spec.rb
|
2056
2033
|
- spec/functional/win32/version_info_spec.rb
|
2057
2034
|
- spec/functional/win32/versions_spec.rb
|
2058
|
-
- spec/integration/.DS_Store
|
2059
2035
|
- spec/integration/client/client_spec.rb
|
2060
2036
|
- spec/integration/client/exit_code_spec.rb
|
2061
2037
|
- spec/integration/client/ipv6_spec.rb
|
@@ -2139,11 +2115,9 @@ files:
|
|
2139
2115
|
- spec/rcov.opts
|
2140
2116
|
- spec/scripts/ssl-serve.rb
|
2141
2117
|
- spec/spec_helper.rb
|
2142
|
-
- spec/stress/.DS_Store
|
2143
2118
|
- spec/stress/win32/file_spec.rb
|
2144
2119
|
- spec/stress/win32/memory_spec.rb
|
2145
2120
|
- spec/stress/win32/security_spec.rb
|
2146
|
-
- spec/support/.DS_Store
|
2147
2121
|
- spec/support/chef_helpers.rb
|
2148
2122
|
- spec/support/key_helpers.rb
|
2149
2123
|
- spec/support/lib/chef/provider/easy.rb
|
@@ -2198,7 +2172,6 @@ files:
|
|
2198
2172
|
- spec/support/shared/unit/user_and_client_shared.rb
|
2199
2173
|
- spec/support/shared/unit/windows_script_resource.rb
|
2200
2174
|
- spec/tiny_server.rb
|
2201
|
-
- spec/unit/.DS_Store
|
2202
2175
|
- spec/unit/api_client/registration_spec.rb
|
2203
2176
|
- spec/unit/api_client_spec.rb
|
2204
2177
|
- spec/unit/api_client_v1_spec.rb
|
@@ -2762,7 +2735,6 @@ files:
|
|
2762
2735
|
- spec/unit/win32/registry_spec.rb
|
2763
2736
|
- spec/unit/win32/security_spec.rb
|
2764
2737
|
- spec/unit/windows_service_spec.rb
|
2765
|
-
- tasks/.DS_Store
|
2766
2738
|
- tasks/announce.rb
|
2767
2739
|
- tasks/bin/run_external_test
|
2768
2740
|
- tasks/dependencies.rb
|
@@ -2789,7 +2761,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
2789
2761
|
- !ruby/object:Gem::Version
|
2790
2762
|
version: '0'
|
2791
2763
|
requirements: []
|
2792
|
-
|
2764
|
+
rubyforge_project:
|
2765
|
+
rubygems_version: 2.7.9
|
2793
2766
|
signing_key:
|
2794
2767
|
specification_version: 4
|
2795
2768
|
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
|