chef 12.11.18 → 12.12.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +4 -4
- data/Rakefile +3 -2
- data/VERSION +1 -1
- data/acceptance/Gemfile.lock +22 -23
- data/acceptance/data-collector/test/integration/default/serverspec/default_spec.rb +2 -41
- data/lib/chef/application/solo.rb +7 -0
- data/lib/chef/chef_fs/file_system/multiplexed_dir.rb +1 -1
- data/lib/chef/data_collector.rb +79 -43
- data/lib/chef/data_collector/messages.rb +4 -33
- data/lib/chef/data_collector/messages/helpers.rb +2 -2
- data/lib/chef/data_collector/resource_report.rb +21 -11
- data/lib/chef/decorator/unchain.rb +43 -0
- data/lib/chef/exceptions.rb +5 -0
- data/lib/chef/http.rb +5 -5
- data/lib/chef/knife/cookbook_create.rb +4 -0
- data/lib/chef/knife/cookbook_site_download.rb +8 -1
- data/lib/chef/knife/cookbook_site_install.rb +8 -0
- data/lib/chef/knife/cookbook_site_list.rb +8 -1
- data/lib/chef/knife/cookbook_site_search.rb +8 -1
- data/lib/chef/knife/cookbook_site_share.rb +8 -1
- data/lib/chef/knife/cookbook_site_show.rb +14 -3
- data/lib/chef/knife/cookbook_site_unshare.rb +8 -1
- data/lib/chef/knife/core/bootstrap_context.rb +1 -1
- data/lib/chef/knife/supermarket_download.rb +33 -0
- data/lib/chef/knife/supermarket_install.rb +33 -0
- data/lib/chef/knife/supermarket_list.rb +33 -0
- data/lib/chef/knife/supermarket_search.rb +33 -0
- data/lib/chef/knife/supermarket_share.rb +33 -0
- data/lib/chef/knife/supermarket_show.rb +33 -0
- data/lib/chef/knife/supermarket_unshare.rb +33 -0
- data/lib/chef/node.rb +13 -32
- data/lib/chef/node/attribute.rb +123 -70
- data/lib/chef/node/attribute_collections.rb +9 -130
- data/lib/chef/node/common_api.rb +124 -0
- data/lib/chef/node/immutable_collections.rb +27 -2
- data/lib/chef/property.rb +6 -2
- data/lib/chef/provider.rb +4 -5
- data/lib/chef/provider/batch.rb +1 -1
- data/lib/chef/provider/directory.rb +3 -1
- data/lib/chef/provider/package/openbsd.rb +1 -1
- data/lib/chef/provider/package/rubygems.rb +9 -3
- data/lib/chef/provider/package/windows/exe.rb +2 -5
- data/lib/chef/provider/powershell_script.rb +1 -1
- data/lib/chef/provider/remote_directory.rb +2 -0
- data/lib/chef/resource.rb +22 -17
- data/lib/chef/resource_builder.rb +9 -4
- data/lib/chef/shell.rb +1 -1
- data/lib/chef/version.rb +1 -1
- data/spec/data/run_context/cookbooks/circular-dep1/attributes/default.rb +2 -4
- data/spec/data/run_context/cookbooks/circular-dep2/attributes/default.rb +2 -3
- data/spec/data/run_context/cookbooks/dependency1/attributes/aa_first.rb +2 -2
- data/spec/data/run_context/cookbooks/dependency1/attributes/default.rb +2 -2
- data/spec/data/run_context/cookbooks/dependency1/attributes/zz_last.rb +2 -3
- data/spec/data/run_context/cookbooks/dependency2/attributes/default.rb +2 -3
- data/spec/data/run_context/cookbooks/no-default-attr/attributes/server.rb +2 -3
- data/spec/data/run_context/cookbooks/test-with-circular-deps/attributes/default.rb +2 -3
- data/spec/data/run_context/cookbooks/test-with-deps/attributes/default.rb +2 -3
- data/spec/functional/assets/chocolatey_feed/test-A.1.0.nupkg +0 -0
- data/spec/functional/assets/chocolatey_feed/test-A.1.5.nupkg +0 -0
- data/spec/functional/assets/chocolatey_feed/test-A.2.0.nupkg +0 -0
- data/spec/functional/assets/chocolatey_feed/test-B.1.0.nupkg +0 -0
- data/spec/functional/resource/dsc_script_spec.rb +1 -0
- data/spec/functional/resource/package_spec.rb +1 -1
- data/spec/functional/resource/template_spec.rb +3 -3
- data/spec/functional/shell_spec.rb +1 -1
- data/spec/integration/knife/client_bulk_delete_spec.rb +130 -0
- data/spec/integration/knife/client_create_spec.rb +69 -0
- data/spec/integration/knife/client_delete_spec.rb +63 -0
- data/spec/integration/knife/client_key_create_spec.rb +65 -0
- data/spec/integration/knife/client_key_delete_spec.rb +42 -0
- data/spec/integration/knife/client_key_list_spec.rb +60 -0
- data/spec/integration/knife/client_key_show_spec.rb +44 -0
- data/spec/integration/knife/client_list_spec.rb +48 -0
- data/spec/integration/knife/client_show_spec.rb +36 -0
- data/spec/integration/knife/cookbook_bulk_delete_spec.rb +64 -0
- data/spec/integration/knife/cookbook_download_spec.rb +95 -0
- data/spec/integration/knife/cookbook_list_spec.rb +54 -0
- data/spec/integration/knife/cookbook_show_spec.rb +159 -0
- data/spec/integration/knife/cookbook_upload_spec.rb +90 -0
- data/spec/integration/knife/data_bag_create_spec.rb +58 -0
- data/spec/integration/knife/data_bag_delete_spec.rb +58 -0
- data/spec/integration/knife/data_bag_from_file_spec.rb +115 -0
- data/spec/integration/knife/data_bag_list_spec.rb +43 -0
- data/spec/integration/knife/data_bag_show_spec.rb +53 -0
- data/spec/integration/knife/environment_compare_spec.rb +74 -0
- data/spec/integration/knife/environment_create_spec.rb +40 -0
- data/spec/integration/knife/environment_delete_spec.rb +36 -0
- data/spec/integration/knife/environment_from_file_spec.rb +115 -0
- data/spec/integration/knife/environment_list_spec.rb +41 -0
- data/spec/integration/knife/environment_show_spec.rb +56 -0
- data/spec/integration/knife/node_bulk_delete_spec.rb +51 -0
- data/spec/integration/knife/node_create_spec.rb +46 -0
- data/spec/integration/knife/node_delete_spec.rb +47 -0
- data/spec/integration/knife/node_environment_set_spec.rb +42 -0
- data/spec/integration/knife/node_from_file_spec.rb +58 -0
- data/spec/integration/knife/node_list_spec.rb +44 -0
- data/spec/integration/knife/node_run_list_add_spec.rb +53 -0
- data/spec/integration/knife/node_run_list_remove_spec.rb +35 -0
- data/spec/integration/knife/node_run_list_set_spec.rb +40 -0
- data/spec/integration/knife/node_show_spec.rb +35 -0
- data/spec/integration/knife/role_bulk_delete_spec.rb +51 -0
- data/spec/integration/knife/role_create_spec.rb +40 -0
- data/spec/integration/knife/role_delete_spec.rb +47 -0
- data/spec/integration/knife/role_from_file_spec.rb +95 -0
- data/spec/integration/knife/role_list_spec.rb +44 -0
- data/spec/integration/knife/role_show_spec.rb +50 -0
- data/spec/support/shared/integration/knife_support.rb +10 -3
- data/spec/unit/application/solo_spec.rb +7 -0
- data/spec/unit/cookbook_version_spec.rb +4 -4
- data/spec/unit/data_collector/messages/helpers_spec.rb +3 -7
- data/spec/unit/data_collector/messages_spec.rb +28 -45
- data/spec/unit/data_collector_spec.rb +40 -47
- data/spec/unit/knife/cookbook_create_spec.rb +1 -0
- data/spec/unit/knife/cookbook_site_download_spec.rb +1 -0
- data/spec/unit/knife/node_environment_set_spec.rb +0 -24
- data/spec/unit/knife/node_run_list_set_spec.rb +0 -25
- data/spec/unit/node/attribute_spec.rb +7 -9
- data/spec/unit/node/immutable_collections_spec.rb +4 -0
- data/spec/unit/node/vivid_mash_spec.rb +344 -0
- data/spec/unit/node_spec.rb +115 -26
- data/spec/unit/provider/directory_spec.rb +11 -1
- data/spec/unit/provider/package/windows/exe_spec.rb +14 -9
- data/spec/unit/provider/powershell_script_spec.rb +4 -4
- data/spec/unit/provider/remote_directory_spec.rb +15 -0
- data/spec/unit/recipe_spec.rb +31 -6
- data/spec/unit/run_context_spec.rb +2 -2
- data/spec/unit/shell/shell_session_spec.rb +1 -1
- data/tasks/dependencies.rb +0 -2
- metadata +55 -786
- data/acceptance/.bundle/config +0 -2
- data/acceptance/basics/.kitchen/logs/chef-current-install-ubuntu-1404.log +0 -2
- data/acceptance/basics/.kitchen/logs/kitchen.log +0 -3
- data/acceptance/fips/.kitchen/logs/fips-integration-centos-6.log +0 -3
- data/acceptance/fips/.kitchen/logs/fips-integration-windows-2012r2.log +0 -3
- data/acceptance/fips/.kitchen/logs/fips-unit-functional-centos-6.log +0 -3
- data/acceptance/fips/.kitchen/logs/fips-unit-functional-windows-2012r2.log +0 -3
- data/acceptance/fips/.kitchen/logs/kitchen.log +0 -6
- data/acceptance/trivial/.kitchen/logs/chef-current-install-windows-2012r2.log +0 -2
- data/acceptance/trivial/.kitchen/logs/kitchen.log +0 -3
- data/acceptance/windows-service/.kitchen/logs/chef-windows-service-windows-2012r2.log +0 -2
- data/acceptance/windows-service/.kitchen/logs/kitchen.log +0 -3
@@ -153,8 +153,8 @@ describe Chef::RunContext do
|
|
153
153
|
let(:chef_repo_path) { File.expand_path(File.join(CHEF_SPEC_DATA, "cookbooks")) }
|
154
154
|
let(:node) {
|
155
155
|
node = Chef::Node.new
|
156
|
-
node.
|
157
|
-
node.
|
156
|
+
node.normal[:platform] = "ubuntu"
|
157
|
+
node.normal[:platform_version] = "13.04"
|
158
158
|
node.name("testing")
|
159
159
|
node
|
160
160
|
}
|
@@ -158,7 +158,7 @@ describe Shell::SoloSession do
|
|
158
158
|
|
159
159
|
it "keeps json attribs and passes them to the node for consumption" do
|
160
160
|
@session.node_attributes = { "besnard_lakes" => "are_the_dark_horse" }
|
161
|
-
expect(@session.node
|
161
|
+
expect(@session.node["besnard_lakes"]).to eq("are_the_dark_horse")
|
162
162
|
#pending "1) keep attribs in an ivar 2) pass them to the node 3) feed them to the node on reset"
|
163
163
|
end
|
164
164
|
|
data/tasks/dependencies.rb
CHANGED
@@ -85,13 +85,11 @@ namespace :dependencies do
|
|
85
85
|
other_platforms: false, leave_frozen: false
|
86
86
|
gemfile_lock_task :update_kitchen_tests_gemfile_lock, dirs: %w{
|
87
87
|
kitchen-tests
|
88
|
-
kitchen-tests/test/integration/webapp/serverspec
|
89
88
|
}
|
90
89
|
berksfile_lock_task :update_kitchen_tests_berksfile_lock, dirs: %w{
|
91
90
|
kitchen-tests
|
92
91
|
kitchen-tests/cookbooks/audit_test
|
93
92
|
}
|
94
|
-
# kitchen-tests/cookbooks/webapp isn't solving right now ....
|
95
93
|
|
96
94
|
desc "Update omnibus overrides, including versions in version_policy.rb and latest version of gems: #{OMNIBUS_RUBYGEMS_AT_LATEST_VERSION.keys}."
|
97
95
|
task :update_omnibus_overrides do |t, rake_args|
|
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: 12.
|
4
|
+
version: 12.12.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Jacob
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-06
|
11
|
+
date: 2016-07-06 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: 12.
|
19
|
+
version: 12.12.13
|
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: 12.
|
26
|
+
version: 12.12.13
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: mixlib-cli
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -425,7 +425,6 @@ files:
|
|
425
425
|
- README.md
|
426
426
|
- Rakefile
|
427
427
|
- VERSION
|
428
|
-
- acceptance/.bundle/config
|
429
428
|
- acceptance/.gitignore
|
430
429
|
- acceptance/.shared/kitchen_acceptance/.kitchen.digitalocean.yml
|
431
430
|
- acceptance/.shared/kitchen_acceptance/.kitchen.ec2.yml
|
@@ -441,8 +440,6 @@ files:
|
|
441
440
|
- acceptance/basics/.acceptance/acceptance-cookbook/recipes/provision.rb
|
442
441
|
- acceptance/basics/.acceptance/acceptance-cookbook/recipes/verify.rb
|
443
442
|
- acceptance/basics/.kitchen.yml
|
444
|
-
- acceptance/basics/.kitchen/logs/chef-current-install-ubuntu-1404.log
|
445
|
-
- acceptance/basics/.kitchen/logs/kitchen.log
|
446
443
|
- acceptance/basics/test/integration/chef-current-install/serverspec/chef_client_spec.rb
|
447
444
|
- acceptance/basics/test/integration/chef-current-install/serverspec/spec_helper.rb
|
448
445
|
- acceptance/data-collector/.acceptance/acceptance-cookbook/.gitignore
|
@@ -471,11 +468,6 @@ files:
|
|
471
468
|
- acceptance/fips/.acceptance/acceptance-cookbook/recipes/provision.rb
|
472
469
|
- acceptance/fips/.acceptance/acceptance-cookbook/recipes/verify.rb
|
473
470
|
- acceptance/fips/.kitchen.yml
|
474
|
-
- acceptance/fips/.kitchen/logs/fips-integration-centos-6.log
|
475
|
-
- acceptance/fips/.kitchen/logs/fips-integration-windows-2012r2.log
|
476
|
-
- acceptance/fips/.kitchen/logs/fips-unit-functional-centos-6.log
|
477
|
-
- acceptance/fips/.kitchen/logs/fips-unit-functional-windows-2012r2.log
|
478
|
-
- acceptance/fips/.kitchen/logs/kitchen.log
|
479
471
|
- acceptance/fips/test/integration/fips-integration/serverspec/Gemfile
|
480
472
|
- acceptance/fips/test/integration/fips-integration/serverspec/fips-integration_spec.rb
|
481
473
|
- acceptance/fips/test/integration/fips-unit-functional/serverspec/Gemfile
|
@@ -504,784 +496,12 @@ files:
|
|
504
496
|
- acceptance/top-cookbooks/.kitchen.sql_server.yml
|
505
497
|
- acceptance/top-cookbooks/.kitchen.winbox.yml
|
506
498
|
- acceptance/top-cookbooks/.kitchen.windows.yml
|
507
|
-
- acceptance/top-cookbooks/test_run/docker/.codeclimate.yml
|
508
|
-
- acceptance/top-cookbooks/test_run/docker/.git/HEAD
|
509
|
-
- acceptance/top-cookbooks/test_run/docker/.git/config
|
510
|
-
- acceptance/top-cookbooks/test_run/docker/.git/description
|
511
|
-
- acceptance/top-cookbooks/test_run/docker/.git/hooks/applypatch-msg.sample
|
512
|
-
- acceptance/top-cookbooks/test_run/docker/.git/hooks/commit-msg.sample
|
513
|
-
- acceptance/top-cookbooks/test_run/docker/.git/hooks/post-update.sample
|
514
|
-
- acceptance/top-cookbooks/test_run/docker/.git/hooks/pre-applypatch.sample
|
515
|
-
- acceptance/top-cookbooks/test_run/docker/.git/hooks/pre-commit.sample
|
516
|
-
- acceptance/top-cookbooks/test_run/docker/.git/hooks/pre-push.sample
|
517
|
-
- acceptance/top-cookbooks/test_run/docker/.git/hooks/pre-rebase.sample
|
518
|
-
- acceptance/top-cookbooks/test_run/docker/.git/hooks/prepare-commit-msg.sample
|
519
|
-
- acceptance/top-cookbooks/test_run/docker/.git/hooks/update.sample
|
520
|
-
- acceptance/top-cookbooks/test_run/docker/.git/index
|
521
|
-
- acceptance/top-cookbooks/test_run/docker/.git/info/exclude
|
522
|
-
- acceptance/top-cookbooks/test_run/docker/.git/logs/HEAD
|
523
|
-
- acceptance/top-cookbooks/test_run/docker/.git/logs/refs/heads/deploy
|
524
|
-
- acceptance/top-cookbooks/test_run/docker/.git/logs/refs/heads/master
|
525
|
-
- acceptance/top-cookbooks/test_run/docker/.git/logs/refs/remotes/origin/HEAD
|
526
|
-
- acceptance/top-cookbooks/test_run/docker/.git/objects/pack/pack-d9d387b8d89853f4d783d5797750e4a517b94765.idx
|
527
|
-
- acceptance/top-cookbooks/test_run/docker/.git/objects/pack/pack-d9d387b8d89853f4d783d5797750e4a517b94765.pack
|
528
|
-
- acceptance/top-cookbooks/test_run/docker/.git/packed-refs
|
529
|
-
- acceptance/top-cookbooks/test_run/docker/.git/refs/heads/deploy
|
530
|
-
- acceptance/top-cookbooks/test_run/docker/.git/refs/heads/master
|
531
|
-
- acceptance/top-cookbooks/test_run/docker/.git/refs/remotes/origin/HEAD
|
532
|
-
- acceptance/top-cookbooks/test_run/docker/.github/ISSUE_TEMPLATE.md
|
533
|
-
- acceptance/top-cookbooks/test_run/docker/.github/PULL_REQUEST_TEMPLATE.md
|
534
|
-
- acceptance/top-cookbooks/test_run/docker/.gitignore
|
535
|
-
- acceptance/top-cookbooks/test_run/docker/.kitchen.cloud.yml
|
536
|
-
- acceptance/top-cookbooks/test_run/docker/.kitchen.yml
|
537
|
-
- acceptance/top-cookbooks/test_run/docker/.kitchen/docker-default-ubuntu-1404.yml
|
538
|
-
- acceptance/top-cookbooks/test_run/docker/.kitchen/logs/docker-default-ubuntu-1404.log
|
539
|
-
- acceptance/top-cookbooks/test_run/docker/.kitchen/logs/kitchen.log
|
540
|
-
- acceptance/top-cookbooks/test_run/docker/.rubocop.yml
|
541
|
-
- acceptance/top-cookbooks/test_run/docker/.travis.yml
|
542
|
-
- acceptance/top-cookbooks/test_run/docker/Berksfile
|
543
|
-
- acceptance/top-cookbooks/test_run/docker/Berksfile.lock
|
544
|
-
- acceptance/top-cookbooks/test_run/docker/CHANGELOG.md
|
545
|
-
- acceptance/top-cookbooks/test_run/docker/CONTRIBUTING.md
|
546
|
-
- acceptance/top-cookbooks/test_run/docker/Gemfile
|
547
|
-
- acceptance/top-cookbooks/test_run/docker/LICENSE
|
548
|
-
- acceptance/top-cookbooks/test_run/docker/MAINTAINERS.md
|
549
|
-
- acceptance/top-cookbooks/test_run/docker/MAINTAINERS.toml
|
550
|
-
- acceptance/top-cookbooks/test_run/docker/README.md
|
551
|
-
- acceptance/top-cookbooks/test_run/docker/Rakefile
|
552
|
-
- acceptance/top-cookbooks/test_run/docker/TESTING.md
|
553
|
-
- acceptance/top-cookbooks/test_run/docker/chefignore
|
554
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/_autoload.rb
|
555
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_base.rb
|
556
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_container.rb
|
557
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_exec.rb
|
558
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_image.rb
|
559
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_installation_binary.rb
|
560
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_installation_package.rb
|
561
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_installation_script.rb
|
562
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_network.rb
|
563
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_registry.rb
|
564
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_service.rb
|
565
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_service_base.rb
|
566
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_service_manager_execute.rb
|
567
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_service_manager_systemd.rb
|
568
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_service_manager_sysvinit_debian.rb
|
569
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_service_manager_sysvinit_rhel.rb
|
570
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_service_manager_upstart.rb
|
571
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_tag.rb
|
572
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_volume.rb
|
573
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/helpers_auth.rb
|
574
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/helpers_base.rb
|
575
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/helpers_container.rb
|
576
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/helpers_image.rb
|
577
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/helpers_installation_binary.rb
|
578
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/helpers_installation_package.rb
|
579
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/helpers_network.rb
|
580
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/helpers_service.rb
|
581
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/matchers.rb
|
582
|
-
- acceptance/top-cookbooks/test_run/docker/metadata.rb
|
583
|
-
- acceptance/top-cookbooks/test_run/docker/spec/docker_test/container_spec.rb
|
584
|
-
- acceptance/top-cookbooks/test_run/docker/spec/docker_test/exec_spec.rb
|
585
|
-
- acceptance/top-cookbooks/test_run/docker/spec/docker_test/image_spec.rb
|
586
|
-
- acceptance/top-cookbooks/test_run/docker/spec/docker_test/network_spec.rb
|
587
|
-
- acceptance/top-cookbooks/test_run/docker/spec/docker_test/registry_spec.rb
|
588
|
-
- acceptance/top-cookbooks/test_run/docker/spec/docker_test/volume_spec.rb
|
589
|
-
- acceptance/top-cookbooks/test_run/docker/spec/helpers_container_spec.rb
|
590
|
-
- acceptance/top-cookbooks/test_run/docker/spec/helpers_network_spec.rb
|
591
|
-
- acceptance/top-cookbooks/test_run/docker/spec/spec_helper.rb
|
592
|
-
- acceptance/top-cookbooks/test_run/docker/tasks/maintainers.rb
|
593
|
-
- acceptance/top-cookbooks/test_run/docker/templates/default/default/docker-wait-ready.erb
|
594
|
-
- acceptance/top-cookbooks/test_run/docker/templates/default/default/docker.erb
|
595
|
-
- acceptance/top-cookbooks/test_run/docker/templates/default/sysconfig/docker.erb
|
596
|
-
- acceptance/top-cookbooks/test_run/docker/templates/default/systemd/docker.service-override.erb
|
597
|
-
- acceptance/top-cookbooks/test_run/docker/templates/default/systemd/docker.service.erb
|
598
|
-
- acceptance/top-cookbooks/test_run/docker/templates/default/systemd/docker.socket-override.erb
|
599
|
-
- acceptance/top-cookbooks/test_run/docker/templates/default/systemd/docker.socket.erb
|
600
|
-
- acceptance/top-cookbooks/test_run/docker/templates/default/systemd/tmpfiles.d.conf.erb
|
601
|
-
- acceptance/top-cookbooks/test_run/docker/templates/default/sysvinit/docker-debian.erb
|
602
|
-
- acceptance/top-cookbooks/test_run/docker/templates/default/sysvinit/docker-rhel.erb
|
603
|
-
- acceptance/top-cookbooks/test_run/docker/templates/default/upstart/docker.conf.erb
|
604
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/CHANGELOG.md
|
605
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/README.md
|
606
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/attributes/default.rb
|
607
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/files/default/Dockerfile_1
|
608
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/files/default/Dockerfile_2
|
609
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/files/default/Dockerfile_4
|
610
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/files/default/image_3.tar
|
611
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/files/default/image_3/Dockerfile
|
612
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/metadata.rb
|
613
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/auto.rb
|
614
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/container.rb
|
615
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/default.rb
|
616
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/exec.rb
|
617
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/image.rb
|
618
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/installation_binary.rb
|
619
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/installation_package.rb
|
620
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/installation_script.rb
|
621
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/network.rb
|
622
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/notifications.rb
|
623
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/registry.rb
|
624
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/service_execute.rb
|
625
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/service_execute_multi.rb
|
626
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/service_systemd.rb
|
627
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/service_systemd_multi.rb
|
628
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/service_sysvinit.rb
|
629
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/service_sysvinit_multi.rb
|
630
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/service_upstart.rb
|
631
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/service_upstart_multi.rb
|
632
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/timeout.rb
|
633
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/volume.rb
|
634
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/templates/default/registry/auth/registry.conf.erb
|
635
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/templates/default/registry/auth/registry.password.erb
|
636
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_binary-1100/inspec/assert_functioning_spec.rb
|
637
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_binary-162/inspec/assert_functioning_spec.rb
|
638
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_binary-171/inspec/assert_functioning_spec.rb
|
639
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_binary-183/inspec/assert_functioning_spec.rb
|
640
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_binary-191/inspec/assert_functioning_spec.rb
|
641
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_package-1100/inspec/assert_functioning_spec.rb
|
642
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_package-171/inspec/assert_functioning_spec.rb
|
643
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_package-183/inspec/assert_functioning_spec.rb
|
644
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_package-191/inspec/assert_functioning_spec.rb
|
645
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_script_experimental/inspec/assert_functioning_spec.rb
|
646
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_script_main/inspec/assert_functioning_spec.rb
|
647
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_script_test/inspec/assert_functioning_spec.rb
|
648
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/network/inspec/assert_functioning_spec.rb
|
649
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/resources-1100/inspec/assert_functioning_spec.rb
|
650
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/resources-162/inspec/assert_functioning_spec.rb
|
651
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/resources-171/inspec/assert_functioning_spec.rb
|
652
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/resources-183/inspec/assert_functioning_spec.rb
|
653
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/resources-191/inspec/assert_functioning_spec.rb
|
654
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/service-execute-multi/inspec/assert_functioning_spec.rb
|
655
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/service-execute/inspec/assert_functioning_spec.rb
|
656
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/service-systemd-multi/inspec/assert_functioning_spec.rb
|
657
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/service-systemd/inspec/assert_functioning_spec.rb
|
658
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/service-sysvinit-multi/inspec/assert_functioning_spec.rb
|
659
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/service-sysvinit/inspec/assert_functioning_spec.rb
|
660
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/service-upstart-multi/inspec/assert_functioning_spec.rb
|
661
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/service-upstart/inspec/assert_functioning_spec.rb
|
662
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/volume/inspec/assert_functioning_spec.rb
|
663
|
-
- acceptance/top-cookbooks/test_run/git/.git/HEAD
|
664
|
-
- acceptance/top-cookbooks/test_run/git/.git/config
|
665
|
-
- acceptance/top-cookbooks/test_run/git/.git/description
|
666
|
-
- acceptance/top-cookbooks/test_run/git/.git/hooks/applypatch-msg.sample
|
667
|
-
- acceptance/top-cookbooks/test_run/git/.git/hooks/commit-msg.sample
|
668
|
-
- acceptance/top-cookbooks/test_run/git/.git/hooks/post-update.sample
|
669
|
-
- acceptance/top-cookbooks/test_run/git/.git/hooks/pre-applypatch.sample
|
670
|
-
- acceptance/top-cookbooks/test_run/git/.git/hooks/pre-commit.sample
|
671
|
-
- acceptance/top-cookbooks/test_run/git/.git/hooks/pre-push.sample
|
672
|
-
- acceptance/top-cookbooks/test_run/git/.git/hooks/pre-rebase.sample
|
673
|
-
- acceptance/top-cookbooks/test_run/git/.git/hooks/prepare-commit-msg.sample
|
674
|
-
- acceptance/top-cookbooks/test_run/git/.git/hooks/update.sample
|
675
|
-
- acceptance/top-cookbooks/test_run/git/.git/index
|
676
|
-
- acceptance/top-cookbooks/test_run/git/.git/info/exclude
|
677
|
-
- acceptance/top-cookbooks/test_run/git/.git/logs/HEAD
|
678
|
-
- acceptance/top-cookbooks/test_run/git/.git/logs/refs/heads/deploy
|
679
|
-
- acceptance/top-cookbooks/test_run/git/.git/logs/refs/heads/master
|
680
|
-
- acceptance/top-cookbooks/test_run/git/.git/logs/refs/remotes/origin/HEAD
|
681
|
-
- acceptance/top-cookbooks/test_run/git/.git/objects/pack/pack-4486de55e7031fada138c18a3723d8d2e2ce81c6.idx
|
682
|
-
- acceptance/top-cookbooks/test_run/git/.git/objects/pack/pack-4486de55e7031fada138c18a3723d8d2e2ce81c6.pack
|
683
|
-
- acceptance/top-cookbooks/test_run/git/.git/packed-refs
|
684
|
-
- acceptance/top-cookbooks/test_run/git/.git/refs/heads/deploy
|
685
|
-
- acceptance/top-cookbooks/test_run/git/.git/refs/heads/master
|
686
|
-
- acceptance/top-cookbooks/test_run/git/.git/refs/remotes/origin/HEAD
|
687
|
-
- acceptance/top-cookbooks/test_run/git/.github/ISSUE_TEMPLATE.md
|
688
|
-
- acceptance/top-cookbooks/test_run/git/.github/PULL_REQUEST_TEMPLATE.md
|
689
|
-
- acceptance/top-cookbooks/test_run/git/.gitignore
|
690
|
-
- acceptance/top-cookbooks/test_run/git/.kitchen.dokken.yml
|
691
|
-
- acceptance/top-cookbooks/test_run/git/.kitchen.yml
|
692
|
-
- acceptance/top-cookbooks/test_run/git/.kitchen/logs/git-default-ubuntu-1404.log
|
693
|
-
- acceptance/top-cookbooks/test_run/git/.kitchen/logs/git-default-windows-windows-2012r2.log
|
694
|
-
- acceptance/top-cookbooks/test_run/git/.kitchen/logs/kitchen.log
|
695
|
-
- acceptance/top-cookbooks/test_run/git/.rspec
|
696
|
-
- acceptance/top-cookbooks/test_run/git/.rubocop.yml
|
697
|
-
- acceptance/top-cookbooks/test_run/git/.travis.yml
|
698
|
-
- acceptance/top-cookbooks/test_run/git/Berksfile
|
699
|
-
- acceptance/top-cookbooks/test_run/git/CHANGELOG.md
|
700
|
-
- acceptance/top-cookbooks/test_run/git/CONTRIBUTING.md
|
701
|
-
- acceptance/top-cookbooks/test_run/git/Gemfile
|
702
|
-
- acceptance/top-cookbooks/test_run/git/LICENSE
|
703
|
-
- acceptance/top-cookbooks/test_run/git/MAINTAINERS.md
|
704
|
-
- acceptance/top-cookbooks/test_run/git/MAINTAINERS.toml
|
705
|
-
- acceptance/top-cookbooks/test_run/git/README.md
|
706
|
-
- acceptance/top-cookbooks/test_run/git/Rakefile
|
707
|
-
- acceptance/top-cookbooks/test_run/git/TESTING.md
|
708
|
-
- acceptance/top-cookbooks/test_run/git/attributes/default.rb
|
709
|
-
- acceptance/top-cookbooks/test_run/git/chefignore
|
710
|
-
- acceptance/top-cookbooks/test_run/git/libraries/helpers.rb
|
711
|
-
- acceptance/top-cookbooks/test_run/git/libraries/matchers.rb
|
712
|
-
- acceptance/top-cookbooks/test_run/git/libraries/provider_git_client.rb
|
713
|
-
- acceptance/top-cookbooks/test_run/git/libraries/provider_git_client_osx.rb
|
714
|
-
- acceptance/top-cookbooks/test_run/git/libraries/provider_git_client_package.rb
|
715
|
-
- acceptance/top-cookbooks/test_run/git/libraries/provider_git_client_source.rb
|
716
|
-
- acceptance/top-cookbooks/test_run/git/libraries/provider_git_client_windows.rb
|
717
|
-
- acceptance/top-cookbooks/test_run/git/libraries/provider_git_service.rb
|
718
|
-
- acceptance/top-cookbooks/test_run/git/libraries/provider_git_service_xinetd.rb
|
719
|
-
- acceptance/top-cookbooks/test_run/git/libraries/resource_git_client.rb
|
720
|
-
- acceptance/top-cookbooks/test_run/git/libraries/resource_git_service.rb
|
721
|
-
- acceptance/top-cookbooks/test_run/git/libraries/z_provider_mapping.rb
|
722
|
-
- acceptance/top-cookbooks/test_run/git/metadata.rb
|
723
|
-
- acceptance/top-cookbooks/test_run/git/providers/config.rb
|
724
|
-
- acceptance/top-cookbooks/test_run/git/recipes/default.rb
|
725
|
-
- acceptance/top-cookbooks/test_run/git/recipes/package.rb
|
726
|
-
- acceptance/top-cookbooks/test_run/git/recipes/server.rb
|
727
|
-
- acceptance/top-cookbooks/test_run/git/recipes/source.rb
|
728
|
-
- acceptance/top-cookbooks/test_run/git/recipes/windows.rb
|
729
|
-
- acceptance/top-cookbooks/test_run/git/resources/config.rb
|
730
|
-
- acceptance/top-cookbooks/test_run/git/spec/spec_helper.rb
|
731
|
-
- acceptance/top-cookbooks/test_run/git/spec/unit/recipes/default_spec.rb
|
732
|
-
- acceptance/top-cookbooks/test_run/git/spec/unit/recipes/server_spec.rb
|
733
|
-
- acceptance/top-cookbooks/test_run/git/spec/unit/recipes/source_spec.rb
|
734
|
-
- acceptance/top-cookbooks/test_run/git/spec/unit/recipes/windows_spec.rb
|
735
|
-
- acceptance/top-cookbooks/test_run/git/tasks/maintainers.rb
|
736
|
-
- acceptance/top-cookbooks/test_run/git/templates/default/git-xinetd.d.erb
|
737
|
-
- acceptance/top-cookbooks/test_run/git/templates/default/sv-git-daemon-log-run.erb
|
738
|
-
- acceptance/top-cookbooks/test_run/git/templates/default/sv-git-daemon-run.erb
|
739
|
-
- acceptance/top-cookbooks/test_run/git/test/fixtures/cookbooks/git_test/metadata.rb
|
740
|
-
- acceptance/top-cookbooks/test_run/git/test/fixtures/cookbooks/git_test/recipes/default.rb
|
741
|
-
- acceptance/top-cookbooks/test_run/git/test/fixtures/serverspec_helper.rb
|
742
|
-
- acceptance/top-cookbooks/test_run/git/test/integration/default-windows/serverspec/git_installed_windows_spec.rb
|
743
|
-
- acceptance/top-cookbooks/test_run/git/test/integration/default/serverspec/git_installed_linux_spec.rb
|
744
|
-
- acceptance/top-cookbooks/test_run/git/test/integration/server/serverspec/git_daemon_spec.rb
|
745
|
-
- acceptance/top-cookbooks/test_run/git/test/integration/source/serverspec/git_installed_spec.rb
|
746
|
-
- acceptance/top-cookbooks/test_run/iis/.foodcritic
|
747
|
-
- acceptance/top-cookbooks/test_run/iis/.git/HEAD
|
748
|
-
- acceptance/top-cookbooks/test_run/iis/.git/config
|
749
|
-
- acceptance/top-cookbooks/test_run/iis/.git/description
|
750
|
-
- acceptance/top-cookbooks/test_run/iis/.git/hooks/applypatch-msg.sample
|
751
|
-
- acceptance/top-cookbooks/test_run/iis/.git/hooks/commit-msg.sample
|
752
|
-
- acceptance/top-cookbooks/test_run/iis/.git/hooks/post-update.sample
|
753
|
-
- acceptance/top-cookbooks/test_run/iis/.git/hooks/pre-applypatch.sample
|
754
|
-
- acceptance/top-cookbooks/test_run/iis/.git/hooks/pre-commit.sample
|
755
|
-
- acceptance/top-cookbooks/test_run/iis/.git/hooks/pre-push.sample
|
756
|
-
- acceptance/top-cookbooks/test_run/iis/.git/hooks/pre-rebase.sample
|
757
|
-
- acceptance/top-cookbooks/test_run/iis/.git/hooks/prepare-commit-msg.sample
|
758
|
-
- acceptance/top-cookbooks/test_run/iis/.git/hooks/update.sample
|
759
|
-
- acceptance/top-cookbooks/test_run/iis/.git/index
|
760
|
-
- acceptance/top-cookbooks/test_run/iis/.git/info/exclude
|
761
|
-
- acceptance/top-cookbooks/test_run/iis/.git/logs/HEAD
|
762
|
-
- acceptance/top-cookbooks/test_run/iis/.git/logs/refs/heads/deploy
|
763
|
-
- acceptance/top-cookbooks/test_run/iis/.git/logs/refs/heads/master
|
764
|
-
- acceptance/top-cookbooks/test_run/iis/.git/logs/refs/remotes/origin/HEAD
|
765
|
-
- acceptance/top-cookbooks/test_run/iis/.git/objects/pack/pack-8a1c1a1f0e01aef624f58f24354d37bce9483748.idx
|
766
|
-
- acceptance/top-cookbooks/test_run/iis/.git/objects/pack/pack-8a1c1a1f0e01aef624f58f24354d37bce9483748.pack
|
767
|
-
- acceptance/top-cookbooks/test_run/iis/.git/packed-refs
|
768
|
-
- acceptance/top-cookbooks/test_run/iis/.git/refs/heads/deploy
|
769
|
-
- acceptance/top-cookbooks/test_run/iis/.git/refs/heads/master
|
770
|
-
- acceptance/top-cookbooks/test_run/iis/.git/refs/remotes/origin/HEAD
|
771
|
-
- acceptance/top-cookbooks/test_run/iis/.github/ISSUE_TEMPLATE.md
|
772
|
-
- acceptance/top-cookbooks/test_run/iis/.github/PULL_REQUEST_TEMPLATE.md
|
773
|
-
- acceptance/top-cookbooks/test_run/iis/.gitignore
|
774
|
-
- acceptance/top-cookbooks/test_run/iis/.kitchen.yml
|
775
|
-
- acceptance/top-cookbooks/test_run/iis/.kitchen/logs/iis-windows-2012r2.log
|
776
|
-
- acceptance/top-cookbooks/test_run/iis/.kitchen/logs/kitchen.log
|
777
|
-
- acceptance/top-cookbooks/test_run/iis/.rubocop.yml
|
778
|
-
- acceptance/top-cookbooks/test_run/iis/.travis.yml
|
779
|
-
- acceptance/top-cookbooks/test_run/iis/Berksfile
|
780
|
-
- acceptance/top-cookbooks/test_run/iis/CHANGELOG.md
|
781
|
-
- acceptance/top-cookbooks/test_run/iis/CONTRIBUTING.md
|
782
|
-
- acceptance/top-cookbooks/test_run/iis/Gemfile
|
783
|
-
- acceptance/top-cookbooks/test_run/iis/LICENSE
|
784
|
-
- acceptance/top-cookbooks/test_run/iis/MAINTAINERS.md
|
785
|
-
- acceptance/top-cookbooks/test_run/iis/MAINTAINERS.toml
|
786
|
-
- acceptance/top-cookbooks/test_run/iis/README.md
|
787
|
-
- acceptance/top-cookbooks/test_run/iis/Rakefile
|
788
|
-
- acceptance/top-cookbooks/test_run/iis/TESTING.md
|
789
|
-
- acceptance/top-cookbooks/test_run/iis/attributes/default.rb
|
790
|
-
- acceptance/top-cookbooks/test_run/iis/chefignore
|
791
|
-
- acceptance/top-cookbooks/test_run/iis/libraries/helper.rb
|
792
|
-
- acceptance/top-cookbooks/test_run/iis/libraries/matcher.rb
|
793
|
-
- acceptance/top-cookbooks/test_run/iis/libraries/processors.rb
|
794
|
-
- acceptance/top-cookbooks/test_run/iis/metadata.rb
|
795
|
-
- acceptance/top-cookbooks/test_run/iis/providers/app.rb
|
796
|
-
- acceptance/top-cookbooks/test_run/iis/providers/config.rb
|
797
|
-
- acceptance/top-cookbooks/test_run/iis/providers/module.rb
|
798
|
-
- acceptance/top-cookbooks/test_run/iis/providers/pool.rb
|
799
|
-
- acceptance/top-cookbooks/test_run/iis/providers/root.rb
|
800
|
-
- acceptance/top-cookbooks/test_run/iis/providers/section.rb
|
801
|
-
- acceptance/top-cookbooks/test_run/iis/providers/site.rb
|
802
|
-
- acceptance/top-cookbooks/test_run/iis/providers/vdir.rb
|
803
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/default.rb
|
804
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_application_initialization.rb
|
805
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_aspnet.rb
|
806
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_aspnet45.rb
|
807
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_auth_anonymous.rb
|
808
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_auth_basic.rb
|
809
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_auth_digest.rb
|
810
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_auth_windows.rb
|
811
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_cgi.rb
|
812
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_compress_dynamic.rb
|
813
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_compress_static.rb
|
814
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_ftp.rb
|
815
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_iis6_metabase_compat.rb
|
816
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_isapi.rb
|
817
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_logging.rb
|
818
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_management.rb
|
819
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_security.rb
|
820
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_tracing.rb
|
821
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/remove_default_site.rb
|
822
|
-
- acceptance/top-cookbooks/test_run/iis/resources/app.rb
|
823
|
-
- acceptance/top-cookbooks/test_run/iis/resources/config.rb
|
824
|
-
- acceptance/top-cookbooks/test_run/iis/resources/module.rb
|
825
|
-
- acceptance/top-cookbooks/test_run/iis/resources/pool.rb
|
826
|
-
- acceptance/top-cookbooks/test_run/iis/resources/root.rb
|
827
|
-
- acceptance/top-cookbooks/test_run/iis/resources/section.rb
|
828
|
-
- acceptance/top-cookbooks/test_run/iis/resources/site.rb
|
829
|
-
- acceptance/top-cookbooks/test_run/iis/resources/vdir.rb
|
830
|
-
- acceptance/top-cookbooks/test_run/iis/spec/spec_helper.rb
|
831
|
-
- acceptance/top-cookbooks/test_run/iis/spec/unit/recipes/default_spec.rb
|
832
|
-
- acceptance/top-cookbooks/test_run/iis/spec/unit/recipes/remove_default_site_spec.rb
|
833
|
-
- acceptance/top-cookbooks/test_run/iis/tasks/maintainers.rb
|
834
|
-
- acceptance/top-cookbooks/test_run/iis/test/fixtures/cookbooks/iis_test/README.md
|
835
|
-
- acceptance/top-cookbooks/test_run/iis/test/fixtures/cookbooks/iis_test/metadata.rb
|
836
|
-
- acceptance/top-cookbooks/test_run/iis/test/fixtures/cookbooks/iis_test/recipes/default.rb
|
837
|
-
- acceptance/top-cookbooks/test_run/iis/test/integration/default/pester/default.tests.ps1
|
838
|
-
- acceptance/top-cookbooks/test_run/iis/test/integration/default/serverspec/default_spec.rb
|
839
|
-
- acceptance/top-cookbooks/test_run/iis/test/integration/default/serverspec/remove_default_site_spec.rb
|
840
|
-
- acceptance/top-cookbooks/test_run/iis/test/integration/default/serverspec/spec_helper.rb
|
841
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.chef-repo.txt
|
842
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/HEAD
|
843
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/config
|
844
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/description
|
845
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/hooks/applypatch-msg.sample
|
846
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/hooks/commit-msg.sample
|
847
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/hooks/post-update.sample
|
848
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/hooks/pre-applypatch.sample
|
849
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/hooks/pre-commit.sample
|
850
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/hooks/pre-push.sample
|
851
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/hooks/pre-rebase.sample
|
852
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/hooks/prepare-commit-msg.sample
|
853
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/hooks/update.sample
|
854
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/index
|
855
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/info/exclude
|
856
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/logs/HEAD
|
857
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/logs/refs/heads/deploy
|
858
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/logs/refs/heads/master
|
859
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/logs/refs/remotes/origin/HEAD
|
860
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/objects/pack/pack-ae748c2a09777da04c30200d2311544ad76beec7.idx
|
861
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/objects/pack/pack-ae748c2a09777da04c30200d2311544ad76beec7.pack
|
862
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/packed-refs
|
863
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/refs/heads/deploy
|
864
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/refs/heads/master
|
865
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/refs/remotes/origin/HEAD
|
866
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.gitignore
|
867
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/LICENSE
|
868
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/README.md
|
869
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/chefignore
|
870
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/.gitignore
|
871
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/.kitchen.yml
|
872
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/Berksfile
|
873
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/README.md
|
874
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/attributes/default.rb
|
875
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/chefignore
|
876
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/metadata.rb
|
877
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/recipes/default.rb
|
878
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/recipes/node.rb
|
879
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/recipes/server.rb
|
880
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/recipes/workstation.rb
|
881
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/spec/spec_helper.rb
|
882
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/spec/unit/recipes/default_spec.rb
|
883
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/spec/unit/recipes/node_spec.rb
|
884
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/spec/unit/recipes/server_spec.rb
|
885
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/spec/unit/recipes/workstation_spec.rb
|
886
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/test/integration/default/serverspec/default_spec.rb
|
887
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/test/integration/helpers/serverspec/spec_helper.rb
|
888
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/test/integration/nodes/chef-server-.json
|
889
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/test/integration/nodes/node-1.json
|
890
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/test/integration/roles/base.json
|
891
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/.gitignore
|
892
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/.kitchen.yml
|
893
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/Berksfile
|
894
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/README.md
|
895
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/attributes/default.rb
|
896
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/chefignore
|
897
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/libraries/init.rb
|
898
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/metadata.rb
|
899
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/recipes/default.rb
|
900
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/recipes/lesson1.rb
|
901
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/recipes/lesson2.rb
|
902
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/recipes/lesson3.rb
|
903
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/recipes/setup.rb
|
904
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/spec/spec_helper.rb
|
905
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/spec/unit/recipes/default_spec.rb
|
906
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/test/integration/default/serverspec/default_spec.rb
|
907
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/test/integration/helpers/serverspec/spec_helper.rb
|
908
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/.gitignore
|
909
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/.kitchen.yml
|
910
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/.kitchen/logs/kitchen.log
|
911
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/.kitchen/logs/learn-the-basics-ubuntu-default-ubuntu-1404.log
|
912
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/Berksfile
|
913
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/README.md
|
914
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/chefignore
|
915
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/libraries/init.rb
|
916
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/metadata.rb
|
917
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/recipes/default.rb
|
918
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/recipes/lesson1.rb
|
919
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/recipes/lesson2.rb
|
920
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/recipes/lesson3.rb
|
921
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/recipes/setup.rb
|
922
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/spec/spec_helper.rb
|
923
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/spec/unit/recipes/default_spec.rb
|
924
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/test/integration/default/serverspec/default_spec.rb
|
925
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/test/integration/helpers/serverspec/spec_helper.rb
|
926
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/.gitignore
|
927
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/.kitchen.yml
|
928
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/Berksfile
|
929
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/README.md
|
930
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/attributes/default.rb
|
931
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/chefignore
|
932
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/libraries/init.rb
|
933
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/metadata.rb
|
934
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/recipes/default.rb
|
935
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/recipes/lesson1.rb
|
936
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/recipes/lesson2.rb
|
937
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/recipes/lesson3.rb
|
938
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/recipes/setup.rb
|
939
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/spec/spec_helper.rb
|
940
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/spec/unit/recipes/default_spec.rb
|
941
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/test/integration/default/serverspec/default_spec.rb
|
942
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/test/integration/helpers/serverspec/spec_helper.rb
|
943
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/.gitignore
|
944
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/.kitchen.yml
|
945
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/Berksfile
|
946
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/README.md
|
947
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/attributes/default.rb
|
948
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/chefignore
|
949
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/libraries/cache_helpers.rb
|
950
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/libraries/string_helpers.rb
|
951
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/libraries/task_helpers.rb
|
952
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/metadata.rb
|
953
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/recipes/default.rb
|
954
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/resources/task.rb
|
955
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/resources/task_options.rb
|
956
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/spec/spec_helper.rb
|
957
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/spec/unit/recipes/default_spec.rb
|
958
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/test/integration/default/serverspec/default_spec.rb
|
959
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/test/integration/helpers/serverspec/spec_helper.rb
|
960
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.chef-repo.txt
|
961
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/HEAD
|
962
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/config
|
963
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/description
|
964
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/hooks/applypatch-msg.sample
|
965
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/hooks/commit-msg.sample
|
966
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/hooks/post-update.sample
|
967
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/hooks/pre-applypatch.sample
|
968
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/hooks/pre-commit.sample
|
969
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/hooks/pre-push.sample
|
970
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/hooks/pre-rebase.sample
|
971
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/hooks/prepare-commit-msg.sample
|
972
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/hooks/update.sample
|
973
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/index
|
974
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/info/exclude
|
975
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/logs/HEAD
|
976
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/logs/refs/heads/deploy
|
977
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/logs/refs/heads/master
|
978
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/logs/refs/remotes/origin/HEAD
|
979
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/objects/pack/pack-ae748c2a09777da04c30200d2311544ad76beec7.idx
|
980
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/objects/pack/pack-ae748c2a09777da04c30200d2311544ad76beec7.pack
|
981
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/packed-refs
|
982
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/refs/heads/deploy
|
983
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/refs/heads/master
|
984
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/refs/remotes/origin/HEAD
|
985
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.gitignore
|
986
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/LICENSE
|
987
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/README.md
|
988
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/chefignore
|
989
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/.gitignore
|
990
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/.kitchen.yml
|
991
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/Berksfile
|
992
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/README.md
|
993
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/attributes/default.rb
|
994
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/chefignore
|
995
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/metadata.rb
|
996
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/recipes/default.rb
|
997
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/recipes/node.rb
|
998
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/recipes/server.rb
|
999
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/recipes/workstation.rb
|
1000
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/spec/spec_helper.rb
|
1001
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/spec/unit/recipes/default_spec.rb
|
1002
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/spec/unit/recipes/node_spec.rb
|
1003
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/spec/unit/recipes/server_spec.rb
|
1004
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/spec/unit/recipes/workstation_spec.rb
|
1005
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/test/integration/default/serverspec/default_spec.rb
|
1006
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/test/integration/helpers/serverspec/spec_helper.rb
|
1007
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/test/integration/nodes/chef-server-.json
|
1008
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/test/integration/nodes/node-1.json
|
1009
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/test/integration/roles/base.json
|
1010
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/.gitignore
|
1011
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/.kitchen.yml
|
1012
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/Berksfile
|
1013
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/README.md
|
1014
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/attributes/default.rb
|
1015
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/chefignore
|
1016
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/libraries/init.rb
|
1017
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/metadata.rb
|
1018
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/recipes/default.rb
|
1019
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/recipes/lesson1.rb
|
1020
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/recipes/lesson2.rb
|
1021
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/recipes/lesson3.rb
|
1022
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/recipes/setup.rb
|
1023
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/spec/spec_helper.rb
|
1024
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/spec/unit/recipes/default_spec.rb
|
1025
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/test/integration/default/serverspec/default_spec.rb
|
1026
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/test/integration/helpers/serverspec/spec_helper.rb
|
1027
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/.gitignore
|
1028
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/.kitchen.yml
|
1029
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/Berksfile
|
1030
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/README.md
|
1031
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/chefignore
|
1032
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/libraries/init.rb
|
1033
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/metadata.rb
|
1034
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/recipes/default.rb
|
1035
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/recipes/lesson1.rb
|
1036
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/recipes/lesson2.rb
|
1037
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/recipes/lesson3.rb
|
1038
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/recipes/setup.rb
|
1039
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/spec/spec_helper.rb
|
1040
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/spec/unit/recipes/default_spec.rb
|
1041
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/test/integration/default/serverspec/default_spec.rb
|
1042
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/test/integration/helpers/serverspec/spec_helper.rb
|
1043
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/.gitignore
|
1044
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/.kitchen.yml
|
1045
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/.kitchen/logs/kitchen.log
|
1046
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/.kitchen/logs/learn-the-basics-windows-default-windows-2012r2.log
|
1047
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/Berksfile
|
1048
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/README.md
|
1049
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/attributes/default.rb
|
1050
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/chefignore
|
1051
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/libraries/init.rb
|
1052
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/metadata.rb
|
1053
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/recipes/default.rb
|
1054
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/recipes/lesson1.rb
|
1055
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/recipes/lesson2.rb
|
1056
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/recipes/lesson3.rb
|
1057
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/recipes/setup.rb
|
1058
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/spec/spec_helper.rb
|
1059
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/spec/unit/recipes/default_spec.rb
|
1060
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/test/integration/default/serverspec/default_spec.rb
|
1061
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/test/integration/helpers/serverspec/spec_helper.rb
|
1062
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/.gitignore
|
1063
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/.kitchen.yml
|
1064
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/Berksfile
|
1065
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/README.md
|
1066
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/attributes/default.rb
|
1067
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/chefignore
|
1068
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/libraries/cache_helpers.rb
|
1069
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/libraries/string_helpers.rb
|
1070
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/libraries/task_helpers.rb
|
1071
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/metadata.rb
|
1072
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/recipes/default.rb
|
1073
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/resources/task.rb
|
1074
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/resources/task_options.rb
|
1075
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/spec/spec_helper.rb
|
1076
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/spec/unit/recipes/default_spec.rb
|
1077
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/test/integration/default/serverspec/default_spec.rb
|
1078
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/test/integration/helpers/serverspec/spec_helper.rb
|
1079
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/HEAD
|
1080
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/config
|
1081
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/description
|
1082
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/hooks/applypatch-msg.sample
|
1083
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/hooks/commit-msg.sample
|
1084
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/hooks/post-update.sample
|
1085
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/hooks/pre-applypatch.sample
|
1086
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/hooks/pre-commit.sample
|
1087
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/hooks/pre-push.sample
|
1088
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/hooks/pre-rebase.sample
|
1089
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/hooks/prepare-commit-msg.sample
|
1090
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/hooks/update.sample
|
1091
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/index
|
1092
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/info/exclude
|
1093
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/logs/HEAD
|
1094
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/logs/refs/heads/deploy
|
1095
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/logs/refs/heads/master
|
1096
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/logs/refs/remotes/origin/HEAD
|
1097
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/objects/pack/pack-d4f66d7733e0287e23c486f3b19b93393af2dab8.idx
|
1098
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/objects/pack/pack-d4f66d7733e0287e23c486f3b19b93393af2dab8.pack
|
1099
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/packed-refs
|
1100
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/refs/heads/deploy
|
1101
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/refs/heads/master
|
1102
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/refs/remotes/origin/HEAD
|
1103
|
-
- acceptance/top-cookbooks/test_run/powershell/.github/ISSUE_TEMPLATE.md
|
1104
|
-
- acceptance/top-cookbooks/test_run/powershell/.github/PULL_REQUEST_TEMPLATE.md
|
1105
|
-
- acceptance/top-cookbooks/test_run/powershell/.gitignore
|
1106
|
-
- acceptance/top-cookbooks/test_run/powershell/.kitchen.cloud.yml
|
1107
|
-
- acceptance/top-cookbooks/test_run/powershell/.kitchen.yml
|
1108
|
-
- acceptance/top-cookbooks/test_run/powershell/.kitchen/logs/kitchen.log
|
1109
|
-
- acceptance/top-cookbooks/test_run/powershell/.kitchen/logs/powershell-windows-2012r2.log
|
1110
|
-
- acceptance/top-cookbooks/test_run/powershell/.rubocop.yml
|
1111
|
-
- acceptance/top-cookbooks/test_run/powershell/.travis.yml
|
1112
|
-
- acceptance/top-cookbooks/test_run/powershell/Berksfile
|
1113
|
-
- acceptance/top-cookbooks/test_run/powershell/CHANGELOG.md
|
1114
|
-
- acceptance/top-cookbooks/test_run/powershell/CONTRIBUTING.md
|
1115
|
-
- acceptance/top-cookbooks/test_run/powershell/Gemfile
|
1116
|
-
- acceptance/top-cookbooks/test_run/powershell/LICENSE
|
1117
|
-
- acceptance/top-cookbooks/test_run/powershell/MAINTAINERS.md
|
1118
|
-
- acceptance/top-cookbooks/test_run/powershell/MAINTAINERS.toml
|
1119
|
-
- acceptance/top-cookbooks/test_run/powershell/README.md
|
1120
|
-
- acceptance/top-cookbooks/test_run/powershell/Rakefile
|
1121
|
-
- acceptance/top-cookbooks/test_run/powershell/TESTING.md
|
1122
|
-
- acceptance/top-cookbooks/test_run/powershell/appveyor.yml
|
1123
|
-
- acceptance/top-cookbooks/test_run/powershell/attributes/bits_4.rb
|
1124
|
-
- acceptance/top-cookbooks/test_run/powershell/attributes/config_lcm.rb
|
1125
|
-
- acceptance/top-cookbooks/test_run/powershell/attributes/default.rb
|
1126
|
-
- acceptance/top-cookbooks/test_run/powershell/attributes/powershell2.rb
|
1127
|
-
- acceptance/top-cookbooks/test_run/powershell/attributes/powershell3.rb
|
1128
|
-
- acceptance/top-cookbooks/test_run/powershell/attributes/powershell4.rb
|
1129
|
-
- acceptance/top-cookbooks/test_run/powershell/attributes/powershell5.rb
|
1130
|
-
- acceptance/top-cookbooks/test_run/powershell/chefignore
|
1131
|
-
- acceptance/top-cookbooks/test_run/powershell/libraries/powershell_module_provider.rb
|
1132
|
-
- acceptance/top-cookbooks/test_run/powershell/libraries/powershell_module_resource.rb
|
1133
|
-
- acceptance/top-cookbooks/test_run/powershell/libraries/powershell_version.rb
|
1134
|
-
- acceptance/top-cookbooks/test_run/powershell/metadata.rb
|
1135
|
-
- acceptance/top-cookbooks/test_run/powershell/providers/default.rb
|
1136
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/default.rb
|
1137
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/disable_lcm.rb
|
1138
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/dsc.rb
|
1139
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/enable_dsc_script.rb
|
1140
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/enable_lcm.rb
|
1141
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/powershell2.rb
|
1142
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/powershell3.rb
|
1143
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/powershell4.rb
|
1144
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/powershell5.rb
|
1145
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/powershell_module.rb
|
1146
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/windows_reboot.rb
|
1147
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/winrm.rb
|
1148
|
-
- acceptance/top-cookbooks/test_run/powershell/resources/default.rb
|
1149
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/helpers/matchers.rb
|
1150
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/libraries/powershell_module_provider_spec.rb
|
1151
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/libraries/powershell_module_resource_spec.rb
|
1152
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/libraries/powershell_version_spec.rb
|
1153
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/recipes/disable_lcm_spec.rb
|
1154
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/recipes/dsc_spec.rb
|
1155
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/recipes/enable_dsc_script_spec.rb
|
1156
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/recipes/enable_lcm_spec.rb
|
1157
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/recipes/powershell2_spec.rb
|
1158
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/recipes/powershell3_spec.rb
|
1159
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/recipes/powershell4_spec.rb
|
1160
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/recipes/powershell5_spec.rb
|
1161
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/recipes/winrm_spec.rb
|
1162
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/spec_helper.rb
|
1163
|
-
- acceptance/top-cookbooks/test_run/powershell/tasks/maintainers.rb
|
1164
|
-
- acceptance/top-cookbooks/test_run/powershell/test/cookbooks/minimal/metadata.rb
|
1165
|
-
- acceptance/top-cookbooks/test_run/powershell/test/cookbooks/minimal/recipes/default.rb
|
1166
|
-
- acceptance/top-cookbooks/test_run/sql_server/.foodcritic
|
1167
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/HEAD
|
1168
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/config
|
1169
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/description
|
1170
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/hooks/applypatch-msg.sample
|
1171
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/hooks/commit-msg.sample
|
1172
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/hooks/post-update.sample
|
1173
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/hooks/pre-applypatch.sample
|
1174
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/hooks/pre-commit.sample
|
1175
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/hooks/pre-push.sample
|
1176
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/hooks/pre-rebase.sample
|
1177
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/hooks/prepare-commit-msg.sample
|
1178
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/hooks/update.sample
|
1179
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/index
|
1180
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/info/exclude
|
1181
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/logs/HEAD
|
1182
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/logs/refs/heads/deploy
|
1183
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/logs/refs/heads/master
|
1184
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/logs/refs/remotes/origin/HEAD
|
1185
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/objects/pack/pack-7067524c3298f94964a2fd3699462ba3c890778a.idx
|
1186
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/objects/pack/pack-7067524c3298f94964a2fd3699462ba3c890778a.pack
|
1187
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/packed-refs
|
1188
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/refs/heads/deploy
|
1189
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/refs/heads/master
|
1190
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/refs/remotes/origin/HEAD
|
1191
|
-
- acceptance/top-cookbooks/test_run/sql_server/.github/ISSUE_TEMPLATE.md
|
1192
|
-
- acceptance/top-cookbooks/test_run/sql_server/.github/PULL_REQUEST_TEMPLATE.md
|
1193
|
-
- acceptance/top-cookbooks/test_run/sql_server/.gitignore
|
1194
|
-
- acceptance/top-cookbooks/test_run/sql_server/.kitchen.yml
|
1195
|
-
- acceptance/top-cookbooks/test_run/sql_server/.kitchen/logs/kitchen.log
|
1196
|
-
- acceptance/top-cookbooks/test_run/sql_server/.kitchen/logs/sql-server-windows-2012r2.log
|
1197
|
-
- acceptance/top-cookbooks/test_run/sql_server/.rubocop.yml
|
1198
|
-
- acceptance/top-cookbooks/test_run/sql_server/.travis.yml
|
1199
|
-
- acceptance/top-cookbooks/test_run/sql_server/Berksfile
|
1200
|
-
- acceptance/top-cookbooks/test_run/sql_server/CHANGELOG.md
|
1201
|
-
- acceptance/top-cookbooks/test_run/sql_server/CONTRIBUTING.md
|
1202
|
-
- acceptance/top-cookbooks/test_run/sql_server/Gemfile
|
1203
|
-
- acceptance/top-cookbooks/test_run/sql_server/LICENSE
|
1204
|
-
- acceptance/top-cookbooks/test_run/sql_server/MAINTAINERS.md
|
1205
|
-
- acceptance/top-cookbooks/test_run/sql_server/MAINTAINERS.toml
|
1206
|
-
- acceptance/top-cookbooks/test_run/sql_server/README.md
|
1207
|
-
- acceptance/top-cookbooks/test_run/sql_server/Rakefile
|
1208
|
-
- acceptance/top-cookbooks/test_run/sql_server/TESTING.md
|
1209
|
-
- acceptance/top-cookbooks/test_run/sql_server/appveyor.yml
|
1210
|
-
- acceptance/top-cookbooks/test_run/sql_server/attributes/client.rb
|
1211
|
-
- acceptance/top-cookbooks/test_run/sql_server/attributes/default.rb
|
1212
|
-
- acceptance/top-cookbooks/test_run/sql_server/attributes/server.rb
|
1213
|
-
- acceptance/top-cookbooks/test_run/sql_server/chefignore
|
1214
|
-
- acceptance/top-cookbooks/test_run/sql_server/libraries/helper.rb
|
1215
|
-
- acceptance/top-cookbooks/test_run/sql_server/metadata.rb
|
1216
|
-
- acceptance/top-cookbooks/test_run/sql_server/recipes/client.rb
|
1217
|
-
- acceptance/top-cookbooks/test_run/sql_server/recipes/default.rb
|
1218
|
-
- acceptance/top-cookbooks/test_run/sql_server/recipes/server.rb
|
1219
|
-
- acceptance/top-cookbooks/test_run/sql_server/spec/spec_helper.rb
|
1220
|
-
- acceptance/top-cookbooks/test_run/sql_server/spec/unit/recipes/server_spec.rb
|
1221
|
-
- acceptance/top-cookbooks/test_run/sql_server/tasks/maintainers.rb
|
1222
|
-
- acceptance/top-cookbooks/test_run/sql_server/templates/default/ConfigurationFile.ini.erb
|
1223
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/HEAD
|
1224
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/config
|
1225
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/description
|
1226
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/hooks/applypatch-msg.sample
|
1227
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/hooks/commit-msg.sample
|
1228
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/hooks/post-update.sample
|
1229
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/hooks/pre-applypatch.sample
|
1230
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/hooks/pre-commit.sample
|
1231
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/hooks/pre-push.sample
|
1232
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/hooks/pre-rebase.sample
|
1233
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/hooks/prepare-commit-msg.sample
|
1234
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/hooks/update.sample
|
1235
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/index
|
1236
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/info/exclude
|
1237
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/logs/HEAD
|
1238
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/logs/refs/heads/deploy
|
1239
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/logs/refs/heads/master
|
1240
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/logs/refs/remotes/origin/HEAD
|
1241
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/objects/pack/pack-648e01e5bbec259844410e0d114d8da194ca6ac9.idx
|
1242
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/objects/pack/pack-648e01e5bbec259844410e0d114d8da194ca6ac9.pack
|
1243
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/packed-refs
|
1244
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/refs/heads/deploy
|
1245
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/refs/heads/master
|
1246
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/refs/remotes/origin/HEAD
|
1247
|
-
- acceptance/top-cookbooks/test_run/winbox/.gitignore
|
1248
|
-
- acceptance/top-cookbooks/test_run/winbox/.kitchen.yml
|
1249
|
-
- acceptance/top-cookbooks/test_run/winbox/.kitchen/logs/default-windows-2012r2.log
|
1250
|
-
- acceptance/top-cookbooks/test_run/winbox/.kitchen/logs/kitchen.log
|
1251
|
-
- acceptance/top-cookbooks/test_run/winbox/Berksfile
|
1252
|
-
- acceptance/top-cookbooks/test_run/winbox/README.md
|
1253
|
-
- acceptance/top-cookbooks/test_run/winbox/attributes/debugger_install_path.rb
|
1254
|
-
- acceptance/top-cookbooks/test_run/winbox/attributes/editor.rb
|
1255
|
-
- acceptance/top-cookbooks/test_run/winbox/files/default/ConEmu.xml
|
1256
|
-
- acceptance/top-cookbooks/test_run/winbox/files/default/chef-dk.ico
|
1257
|
-
- acceptance/top-cookbooks/test_run/winbox/files/default/get-help-full.ps1
|
1258
|
-
- acceptance/top-cookbooks/test_run/winbox/files/default/install.ps1
|
1259
|
-
- acceptance/top-cookbooks/test_run/winbox/files/default/set-location-docs.ps1
|
1260
|
-
- acceptance/top-cookbooks/test_run/winbox/files/default/start-chefdk.ps1
|
1261
|
-
- acceptance/top-cookbooks/test_run/winbox/files/default/vscode-keybindings.json
|
1262
|
-
- acceptance/top-cookbooks/test_run/winbox/files/default/vscode-settings.json
|
1263
|
-
- acceptance/top-cookbooks/test_run/winbox/files/default/winbox-ps-profile.ps1
|
1264
|
-
- acceptance/top-cookbooks/test_run/winbox/libraries/executable_finder.rb
|
1265
|
-
- acceptance/top-cookbooks/test_run/winbox/libraries/git_information.rb
|
1266
|
-
- acceptance/top-cookbooks/test_run/winbox/metadata.rb
|
1267
|
-
- acceptance/top-cookbooks/test_run/winbox/recipes/chefdk.rb
|
1268
|
-
- acceptance/top-cookbooks/test_run/winbox/recipes/chefdk_shortcut.rb
|
1269
|
-
- acceptance/top-cookbooks/test_run/winbox/recipes/chocolatey_install.rb
|
1270
|
-
- acceptance/top-cookbooks/test_run/winbox/recipes/console.rb
|
1271
|
-
- acceptance/top-cookbooks/test_run/winbox/recipes/debugger.rb
|
1272
|
-
- acceptance/top-cookbooks/test_run/winbox/recipes/default.rb
|
1273
|
-
- acceptance/top-cookbooks/test_run/winbox/recipes/editor.rb
|
1274
|
-
- acceptance/top-cookbooks/test_run/winbox/recipes/powershell_dev.rb
|
1275
|
-
- acceptance/top-cookbooks/test_run/winbox/recipes/readline.rb
|
1276
|
-
- acceptance/top-cookbooks/test_run/winbox/recipes/vscode_emacs.rb
|
1277
499
|
- acceptance/trivial/.acceptance/acceptance-cookbook/.gitignore
|
1278
500
|
- acceptance/trivial/.acceptance/acceptance-cookbook/metadata.rb
|
1279
501
|
- acceptance/trivial/.acceptance/acceptance-cookbook/recipes/destroy.rb
|
1280
502
|
- acceptance/trivial/.acceptance/acceptance-cookbook/recipes/provision.rb
|
1281
503
|
- acceptance/trivial/.acceptance/acceptance-cookbook/recipes/verify.rb
|
1282
504
|
- acceptance/trivial/.kitchen.yml
|
1283
|
-
- acceptance/trivial/.kitchen/logs/chef-current-install-windows-2012r2.log
|
1284
|
-
- acceptance/trivial/.kitchen/logs/kitchen.log
|
1285
505
|
- acceptance/trivial/test/integration/chef-current-install/inspec/chef_client_spec.rb
|
1286
506
|
- acceptance/windows-service/.acceptance/acceptance-cookbook/.gitignore
|
1287
507
|
- acceptance/windows-service/.acceptance/acceptance-cookbook/metadata.rb
|
@@ -1289,8 +509,6 @@ files:
|
|
1289
509
|
- acceptance/windows-service/.acceptance/acceptance-cookbook/recipes/provision.rb
|
1290
510
|
- acceptance/windows-service/.acceptance/acceptance-cookbook/recipes/verify.rb
|
1291
511
|
- acceptance/windows-service/.kitchen.yml
|
1292
|
-
- acceptance/windows-service/.kitchen/logs/chef-windows-service-windows-2012r2.log
|
1293
|
-
- acceptance/windows-service/.kitchen/logs/kitchen.log
|
1294
512
|
- acceptance/windows-service/test/integration/chef-windows-service/inspec/chef_windows_service_spec.rb
|
1295
513
|
- bin/chef-apply
|
1296
514
|
- bin/chef-client
|
@@ -1630,6 +848,7 @@ files:
|
|
1630
848
|
- lib/chef/decorator.rb
|
1631
849
|
- lib/chef/decorator/lazy.rb
|
1632
850
|
- lib/chef/decorator/lazy_array.rb
|
851
|
+
- lib/chef/decorator/unchain.rb
|
1633
852
|
- lib/chef/delayed_evaluator.rb
|
1634
853
|
- lib/chef/deprecation/mixin/template.rb
|
1635
854
|
- lib/chef/deprecation/provider/cookbook_file.rb
|
@@ -1854,6 +1073,13 @@ files:
|
|
1854
1073
|
- lib/chef/knife/ssl_check.rb
|
1855
1074
|
- lib/chef/knife/ssl_fetch.rb
|
1856
1075
|
- lib/chef/knife/status.rb
|
1076
|
+
- lib/chef/knife/supermarket_download.rb
|
1077
|
+
- lib/chef/knife/supermarket_install.rb
|
1078
|
+
- lib/chef/knife/supermarket_list.rb
|
1079
|
+
- lib/chef/knife/supermarket_search.rb
|
1080
|
+
- lib/chef/knife/supermarket_share.rb
|
1081
|
+
- lib/chef/knife/supermarket_show.rb
|
1082
|
+
- lib/chef/knife/supermarket_unshare.rb
|
1857
1083
|
- lib/chef/knife/tag_create.rb
|
1858
1084
|
- lib/chef/knife/tag_delete.rb
|
1859
1085
|
- lib/chef/knife/tag_list.rb
|
@@ -1925,6 +1151,7 @@ files:
|
|
1925
1151
|
- lib/chef/node.rb
|
1926
1152
|
- lib/chef/node/attribute.rb
|
1927
1153
|
- lib/chef/node/attribute_collections.rb
|
1154
|
+
- lib/chef/node/common_api.rb
|
1928
1155
|
- lib/chef/node/immutable_collections.rb
|
1929
1156
|
- lib/chef/node_map.rb
|
1930
1157
|
- lib/chef/null_logger.rb
|
@@ -2655,15 +1882,56 @@ files:
|
|
2655
1882
|
- spec/integration/knife/chef_repo_path_spec.rb
|
2656
1883
|
- spec/integration/knife/chef_repository_file_system_spec.rb
|
2657
1884
|
- spec/integration/knife/chefignore_spec.rb
|
1885
|
+
- spec/integration/knife/client_bulk_delete_spec.rb
|
1886
|
+
- spec/integration/knife/client_create_spec.rb
|
1887
|
+
- spec/integration/knife/client_delete_spec.rb
|
1888
|
+
- spec/integration/knife/client_key_create_spec.rb
|
1889
|
+
- spec/integration/knife/client_key_delete_spec.rb
|
1890
|
+
- spec/integration/knife/client_key_list_spec.rb
|
1891
|
+
- spec/integration/knife/client_key_show_spec.rb
|
1892
|
+
- spec/integration/knife/client_list_spec.rb
|
1893
|
+
- spec/integration/knife/client_show_spec.rb
|
2658
1894
|
- spec/integration/knife/common_options_spec.rb
|
2659
1895
|
- spec/integration/knife/cookbook_api_ipv6_spec.rb
|
1896
|
+
- spec/integration/knife/cookbook_bulk_delete_spec.rb
|
1897
|
+
- spec/integration/knife/cookbook_download_spec.rb
|
1898
|
+
- spec/integration/knife/cookbook_list_spec.rb
|
1899
|
+
- spec/integration/knife/cookbook_show_spec.rb
|
1900
|
+
- spec/integration/knife/cookbook_upload_spec.rb
|
1901
|
+
- spec/integration/knife/data_bag_create_spec.rb
|
1902
|
+
- spec/integration/knife/data_bag_delete_spec.rb
|
1903
|
+
- spec/integration/knife/data_bag_from_file_spec.rb
|
1904
|
+
- spec/integration/knife/data_bag_list_spec.rb
|
1905
|
+
- spec/integration/knife/data_bag_show_spec.rb
|
2660
1906
|
- spec/integration/knife/delete_spec.rb
|
2661
1907
|
- spec/integration/knife/deps_spec.rb
|
2662
1908
|
- spec/integration/knife/diff_spec.rb
|
2663
1909
|
- spec/integration/knife/download_spec.rb
|
1910
|
+
- spec/integration/knife/environment_compare_spec.rb
|
1911
|
+
- spec/integration/knife/environment_create_spec.rb
|
1912
|
+
- spec/integration/knife/environment_delete_spec.rb
|
1913
|
+
- spec/integration/knife/environment_from_file_spec.rb
|
1914
|
+
- spec/integration/knife/environment_list_spec.rb
|
1915
|
+
- spec/integration/knife/environment_show_spec.rb
|
2664
1916
|
- spec/integration/knife/list_spec.rb
|
1917
|
+
- spec/integration/knife/node_bulk_delete_spec.rb
|
1918
|
+
- spec/integration/knife/node_create_spec.rb
|
1919
|
+
- spec/integration/knife/node_delete_spec.rb
|
1920
|
+
- spec/integration/knife/node_environment_set_spec.rb
|
1921
|
+
- spec/integration/knife/node_from_file_spec.rb
|
1922
|
+
- spec/integration/knife/node_list_spec.rb
|
1923
|
+
- spec/integration/knife/node_run_list_add_spec.rb
|
1924
|
+
- spec/integration/knife/node_run_list_remove_spec.rb
|
1925
|
+
- spec/integration/knife/node_run_list_set_spec.rb
|
1926
|
+
- spec/integration/knife/node_show_spec.rb
|
2665
1927
|
- spec/integration/knife/raw_spec.rb
|
2666
1928
|
- spec/integration/knife/redirection_spec.rb
|
1929
|
+
- spec/integration/knife/role_bulk_delete_spec.rb
|
1930
|
+
- spec/integration/knife/role_create_spec.rb
|
1931
|
+
- spec/integration/knife/role_delete_spec.rb
|
1932
|
+
- spec/integration/knife/role_from_file_spec.rb
|
1933
|
+
- spec/integration/knife/role_list_spec.rb
|
1934
|
+
- spec/integration/knife/role_show_spec.rb
|
2667
1935
|
- spec/integration/knife/serve_spec.rb
|
2668
1936
|
- spec/integration/knife/show_spec.rb
|
2669
1937
|
- spec/integration/knife/upload_spec.rb
|
@@ -2977,6 +2245,7 @@ files:
|
|
2977
2245
|
- spec/unit/monologger_spec.rb
|
2978
2246
|
- spec/unit/node/attribute_spec.rb
|
2979
2247
|
- spec/unit/node/immutable_collections_spec.rb
|
2248
|
+
- spec/unit/node/vivid_mash_spec.rb
|
2980
2249
|
- spec/unit/node_map_spec.rb
|
2981
2250
|
- spec/unit/node_spec.rb
|
2982
2251
|
- spec/unit/org_spec.rb
|