chef 12.11.18-universal-mingw32 → 12.12.13-universal-mingw32
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: universal-mingw32
|
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
|
@@ -582,7 +582,6 @@ files:
|
|
582
582
|
- README.md
|
583
583
|
- Rakefile
|
584
584
|
- VERSION
|
585
|
-
- acceptance/.bundle/config
|
586
585
|
- acceptance/.gitignore
|
587
586
|
- acceptance/.shared/kitchen_acceptance/.kitchen.digitalocean.yml
|
588
587
|
- acceptance/.shared/kitchen_acceptance/.kitchen.ec2.yml
|
@@ -598,8 +597,6 @@ files:
|
|
598
597
|
- acceptance/basics/.acceptance/acceptance-cookbook/recipes/provision.rb
|
599
598
|
- acceptance/basics/.acceptance/acceptance-cookbook/recipes/verify.rb
|
600
599
|
- acceptance/basics/.kitchen.yml
|
601
|
-
- acceptance/basics/.kitchen/logs/chef-current-install-ubuntu-1404.log
|
602
|
-
- acceptance/basics/.kitchen/logs/kitchen.log
|
603
600
|
- acceptance/basics/test/integration/chef-current-install/serverspec/chef_client_spec.rb
|
604
601
|
- acceptance/basics/test/integration/chef-current-install/serverspec/spec_helper.rb
|
605
602
|
- acceptance/data-collector/.acceptance/acceptance-cookbook/.gitignore
|
@@ -628,11 +625,6 @@ files:
|
|
628
625
|
- acceptance/fips/.acceptance/acceptance-cookbook/recipes/provision.rb
|
629
626
|
- acceptance/fips/.acceptance/acceptance-cookbook/recipes/verify.rb
|
630
627
|
- acceptance/fips/.kitchen.yml
|
631
|
-
- acceptance/fips/.kitchen/logs/fips-integration-centos-6.log
|
632
|
-
- acceptance/fips/.kitchen/logs/fips-integration-windows-2012r2.log
|
633
|
-
- acceptance/fips/.kitchen/logs/fips-unit-functional-centos-6.log
|
634
|
-
- acceptance/fips/.kitchen/logs/fips-unit-functional-windows-2012r2.log
|
635
|
-
- acceptance/fips/.kitchen/logs/kitchen.log
|
636
628
|
- acceptance/fips/test/integration/fips-integration/serverspec/Gemfile
|
637
629
|
- acceptance/fips/test/integration/fips-integration/serverspec/fips-integration_spec.rb
|
638
630
|
- acceptance/fips/test/integration/fips-unit-functional/serverspec/Gemfile
|
@@ -661,784 +653,12 @@ files:
|
|
661
653
|
- acceptance/top-cookbooks/.kitchen.sql_server.yml
|
662
654
|
- acceptance/top-cookbooks/.kitchen.winbox.yml
|
663
655
|
- acceptance/top-cookbooks/.kitchen.windows.yml
|
664
|
-
- acceptance/top-cookbooks/test_run/docker/.codeclimate.yml
|
665
|
-
- acceptance/top-cookbooks/test_run/docker/.git/HEAD
|
666
|
-
- acceptance/top-cookbooks/test_run/docker/.git/config
|
667
|
-
- acceptance/top-cookbooks/test_run/docker/.git/description
|
668
|
-
- acceptance/top-cookbooks/test_run/docker/.git/hooks/applypatch-msg.sample
|
669
|
-
- acceptance/top-cookbooks/test_run/docker/.git/hooks/commit-msg.sample
|
670
|
-
- acceptance/top-cookbooks/test_run/docker/.git/hooks/post-update.sample
|
671
|
-
- acceptance/top-cookbooks/test_run/docker/.git/hooks/pre-applypatch.sample
|
672
|
-
- acceptance/top-cookbooks/test_run/docker/.git/hooks/pre-commit.sample
|
673
|
-
- acceptance/top-cookbooks/test_run/docker/.git/hooks/pre-push.sample
|
674
|
-
- acceptance/top-cookbooks/test_run/docker/.git/hooks/pre-rebase.sample
|
675
|
-
- acceptance/top-cookbooks/test_run/docker/.git/hooks/prepare-commit-msg.sample
|
676
|
-
- acceptance/top-cookbooks/test_run/docker/.git/hooks/update.sample
|
677
|
-
- acceptance/top-cookbooks/test_run/docker/.git/index
|
678
|
-
- acceptance/top-cookbooks/test_run/docker/.git/info/exclude
|
679
|
-
- acceptance/top-cookbooks/test_run/docker/.git/logs/HEAD
|
680
|
-
- acceptance/top-cookbooks/test_run/docker/.git/logs/refs/heads/deploy
|
681
|
-
- acceptance/top-cookbooks/test_run/docker/.git/logs/refs/heads/master
|
682
|
-
- acceptance/top-cookbooks/test_run/docker/.git/logs/refs/remotes/origin/HEAD
|
683
|
-
- acceptance/top-cookbooks/test_run/docker/.git/objects/pack/pack-d9d387b8d89853f4d783d5797750e4a517b94765.idx
|
684
|
-
- acceptance/top-cookbooks/test_run/docker/.git/objects/pack/pack-d9d387b8d89853f4d783d5797750e4a517b94765.pack
|
685
|
-
- acceptance/top-cookbooks/test_run/docker/.git/packed-refs
|
686
|
-
- acceptance/top-cookbooks/test_run/docker/.git/refs/heads/deploy
|
687
|
-
- acceptance/top-cookbooks/test_run/docker/.git/refs/heads/master
|
688
|
-
- acceptance/top-cookbooks/test_run/docker/.git/refs/remotes/origin/HEAD
|
689
|
-
- acceptance/top-cookbooks/test_run/docker/.github/ISSUE_TEMPLATE.md
|
690
|
-
- acceptance/top-cookbooks/test_run/docker/.github/PULL_REQUEST_TEMPLATE.md
|
691
|
-
- acceptance/top-cookbooks/test_run/docker/.gitignore
|
692
|
-
- acceptance/top-cookbooks/test_run/docker/.kitchen.cloud.yml
|
693
|
-
- acceptance/top-cookbooks/test_run/docker/.kitchen.yml
|
694
|
-
- acceptance/top-cookbooks/test_run/docker/.kitchen/docker-default-ubuntu-1404.yml
|
695
|
-
- acceptance/top-cookbooks/test_run/docker/.kitchen/logs/docker-default-ubuntu-1404.log
|
696
|
-
- acceptance/top-cookbooks/test_run/docker/.kitchen/logs/kitchen.log
|
697
|
-
- acceptance/top-cookbooks/test_run/docker/.rubocop.yml
|
698
|
-
- acceptance/top-cookbooks/test_run/docker/.travis.yml
|
699
|
-
- acceptance/top-cookbooks/test_run/docker/Berksfile
|
700
|
-
- acceptance/top-cookbooks/test_run/docker/Berksfile.lock
|
701
|
-
- acceptance/top-cookbooks/test_run/docker/CHANGELOG.md
|
702
|
-
- acceptance/top-cookbooks/test_run/docker/CONTRIBUTING.md
|
703
|
-
- acceptance/top-cookbooks/test_run/docker/Gemfile
|
704
|
-
- acceptance/top-cookbooks/test_run/docker/LICENSE
|
705
|
-
- acceptance/top-cookbooks/test_run/docker/MAINTAINERS.md
|
706
|
-
- acceptance/top-cookbooks/test_run/docker/MAINTAINERS.toml
|
707
|
-
- acceptance/top-cookbooks/test_run/docker/README.md
|
708
|
-
- acceptance/top-cookbooks/test_run/docker/Rakefile
|
709
|
-
- acceptance/top-cookbooks/test_run/docker/TESTING.md
|
710
|
-
- acceptance/top-cookbooks/test_run/docker/chefignore
|
711
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/_autoload.rb
|
712
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_base.rb
|
713
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_container.rb
|
714
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_exec.rb
|
715
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_image.rb
|
716
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_installation_binary.rb
|
717
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_installation_package.rb
|
718
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_installation_script.rb
|
719
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_network.rb
|
720
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_registry.rb
|
721
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_service.rb
|
722
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_service_base.rb
|
723
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_service_manager_execute.rb
|
724
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_service_manager_systemd.rb
|
725
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_service_manager_sysvinit_debian.rb
|
726
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_service_manager_sysvinit_rhel.rb
|
727
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_service_manager_upstart.rb
|
728
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_tag.rb
|
729
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/docker_volume.rb
|
730
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/helpers_auth.rb
|
731
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/helpers_base.rb
|
732
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/helpers_container.rb
|
733
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/helpers_image.rb
|
734
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/helpers_installation_binary.rb
|
735
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/helpers_installation_package.rb
|
736
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/helpers_network.rb
|
737
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/helpers_service.rb
|
738
|
-
- acceptance/top-cookbooks/test_run/docker/libraries/matchers.rb
|
739
|
-
- acceptance/top-cookbooks/test_run/docker/metadata.rb
|
740
|
-
- acceptance/top-cookbooks/test_run/docker/spec/docker_test/container_spec.rb
|
741
|
-
- acceptance/top-cookbooks/test_run/docker/spec/docker_test/exec_spec.rb
|
742
|
-
- acceptance/top-cookbooks/test_run/docker/spec/docker_test/image_spec.rb
|
743
|
-
- acceptance/top-cookbooks/test_run/docker/spec/docker_test/network_spec.rb
|
744
|
-
- acceptance/top-cookbooks/test_run/docker/spec/docker_test/registry_spec.rb
|
745
|
-
- acceptance/top-cookbooks/test_run/docker/spec/docker_test/volume_spec.rb
|
746
|
-
- acceptance/top-cookbooks/test_run/docker/spec/helpers_container_spec.rb
|
747
|
-
- acceptance/top-cookbooks/test_run/docker/spec/helpers_network_spec.rb
|
748
|
-
- acceptance/top-cookbooks/test_run/docker/spec/spec_helper.rb
|
749
|
-
- acceptance/top-cookbooks/test_run/docker/tasks/maintainers.rb
|
750
|
-
- acceptance/top-cookbooks/test_run/docker/templates/default/default/docker-wait-ready.erb
|
751
|
-
- acceptance/top-cookbooks/test_run/docker/templates/default/default/docker.erb
|
752
|
-
- acceptance/top-cookbooks/test_run/docker/templates/default/sysconfig/docker.erb
|
753
|
-
- acceptance/top-cookbooks/test_run/docker/templates/default/systemd/docker.service-override.erb
|
754
|
-
- acceptance/top-cookbooks/test_run/docker/templates/default/systemd/docker.service.erb
|
755
|
-
- acceptance/top-cookbooks/test_run/docker/templates/default/systemd/docker.socket-override.erb
|
756
|
-
- acceptance/top-cookbooks/test_run/docker/templates/default/systemd/docker.socket.erb
|
757
|
-
- acceptance/top-cookbooks/test_run/docker/templates/default/systemd/tmpfiles.d.conf.erb
|
758
|
-
- acceptance/top-cookbooks/test_run/docker/templates/default/sysvinit/docker-debian.erb
|
759
|
-
- acceptance/top-cookbooks/test_run/docker/templates/default/sysvinit/docker-rhel.erb
|
760
|
-
- acceptance/top-cookbooks/test_run/docker/templates/default/upstart/docker.conf.erb
|
761
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/CHANGELOG.md
|
762
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/README.md
|
763
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/attributes/default.rb
|
764
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/files/default/Dockerfile_1
|
765
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/files/default/Dockerfile_2
|
766
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/files/default/Dockerfile_4
|
767
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/files/default/image_3.tar
|
768
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/files/default/image_3/Dockerfile
|
769
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/metadata.rb
|
770
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/auto.rb
|
771
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/container.rb
|
772
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/default.rb
|
773
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/exec.rb
|
774
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/image.rb
|
775
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/installation_binary.rb
|
776
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/installation_package.rb
|
777
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/installation_script.rb
|
778
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/network.rb
|
779
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/notifications.rb
|
780
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/registry.rb
|
781
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/service_execute.rb
|
782
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/service_execute_multi.rb
|
783
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/service_systemd.rb
|
784
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/service_systemd_multi.rb
|
785
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/service_sysvinit.rb
|
786
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/service_sysvinit_multi.rb
|
787
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/service_upstart.rb
|
788
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/service_upstart_multi.rb
|
789
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/timeout.rb
|
790
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/recipes/volume.rb
|
791
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/templates/default/registry/auth/registry.conf.erb
|
792
|
-
- acceptance/top-cookbooks/test_run/docker/test/cookbooks/docker_test/templates/default/registry/auth/registry.password.erb
|
793
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_binary-1100/inspec/assert_functioning_spec.rb
|
794
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_binary-162/inspec/assert_functioning_spec.rb
|
795
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_binary-171/inspec/assert_functioning_spec.rb
|
796
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_binary-183/inspec/assert_functioning_spec.rb
|
797
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_binary-191/inspec/assert_functioning_spec.rb
|
798
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_package-1100/inspec/assert_functioning_spec.rb
|
799
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_package-171/inspec/assert_functioning_spec.rb
|
800
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_package-183/inspec/assert_functioning_spec.rb
|
801
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_package-191/inspec/assert_functioning_spec.rb
|
802
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_script_experimental/inspec/assert_functioning_spec.rb
|
803
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_script_main/inspec/assert_functioning_spec.rb
|
804
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/installation_script_test/inspec/assert_functioning_spec.rb
|
805
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/network/inspec/assert_functioning_spec.rb
|
806
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/resources-1100/inspec/assert_functioning_spec.rb
|
807
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/resources-162/inspec/assert_functioning_spec.rb
|
808
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/resources-171/inspec/assert_functioning_spec.rb
|
809
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/resources-183/inspec/assert_functioning_spec.rb
|
810
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/resources-191/inspec/assert_functioning_spec.rb
|
811
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/service-execute-multi/inspec/assert_functioning_spec.rb
|
812
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/service-execute/inspec/assert_functioning_spec.rb
|
813
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/service-systemd-multi/inspec/assert_functioning_spec.rb
|
814
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/service-systemd/inspec/assert_functioning_spec.rb
|
815
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/service-sysvinit-multi/inspec/assert_functioning_spec.rb
|
816
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/service-sysvinit/inspec/assert_functioning_spec.rb
|
817
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/service-upstart-multi/inspec/assert_functioning_spec.rb
|
818
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/service-upstart/inspec/assert_functioning_spec.rb
|
819
|
-
- acceptance/top-cookbooks/test_run/docker/test/integration/volume/inspec/assert_functioning_spec.rb
|
820
|
-
- acceptance/top-cookbooks/test_run/git/.git/HEAD
|
821
|
-
- acceptance/top-cookbooks/test_run/git/.git/config
|
822
|
-
- acceptance/top-cookbooks/test_run/git/.git/description
|
823
|
-
- acceptance/top-cookbooks/test_run/git/.git/hooks/applypatch-msg.sample
|
824
|
-
- acceptance/top-cookbooks/test_run/git/.git/hooks/commit-msg.sample
|
825
|
-
- acceptance/top-cookbooks/test_run/git/.git/hooks/post-update.sample
|
826
|
-
- acceptance/top-cookbooks/test_run/git/.git/hooks/pre-applypatch.sample
|
827
|
-
- acceptance/top-cookbooks/test_run/git/.git/hooks/pre-commit.sample
|
828
|
-
- acceptance/top-cookbooks/test_run/git/.git/hooks/pre-push.sample
|
829
|
-
- acceptance/top-cookbooks/test_run/git/.git/hooks/pre-rebase.sample
|
830
|
-
- acceptance/top-cookbooks/test_run/git/.git/hooks/prepare-commit-msg.sample
|
831
|
-
- acceptance/top-cookbooks/test_run/git/.git/hooks/update.sample
|
832
|
-
- acceptance/top-cookbooks/test_run/git/.git/index
|
833
|
-
- acceptance/top-cookbooks/test_run/git/.git/info/exclude
|
834
|
-
- acceptance/top-cookbooks/test_run/git/.git/logs/HEAD
|
835
|
-
- acceptance/top-cookbooks/test_run/git/.git/logs/refs/heads/deploy
|
836
|
-
- acceptance/top-cookbooks/test_run/git/.git/logs/refs/heads/master
|
837
|
-
- acceptance/top-cookbooks/test_run/git/.git/logs/refs/remotes/origin/HEAD
|
838
|
-
- acceptance/top-cookbooks/test_run/git/.git/objects/pack/pack-4486de55e7031fada138c18a3723d8d2e2ce81c6.idx
|
839
|
-
- acceptance/top-cookbooks/test_run/git/.git/objects/pack/pack-4486de55e7031fada138c18a3723d8d2e2ce81c6.pack
|
840
|
-
- acceptance/top-cookbooks/test_run/git/.git/packed-refs
|
841
|
-
- acceptance/top-cookbooks/test_run/git/.git/refs/heads/deploy
|
842
|
-
- acceptance/top-cookbooks/test_run/git/.git/refs/heads/master
|
843
|
-
- acceptance/top-cookbooks/test_run/git/.git/refs/remotes/origin/HEAD
|
844
|
-
- acceptance/top-cookbooks/test_run/git/.github/ISSUE_TEMPLATE.md
|
845
|
-
- acceptance/top-cookbooks/test_run/git/.github/PULL_REQUEST_TEMPLATE.md
|
846
|
-
- acceptance/top-cookbooks/test_run/git/.gitignore
|
847
|
-
- acceptance/top-cookbooks/test_run/git/.kitchen.dokken.yml
|
848
|
-
- acceptance/top-cookbooks/test_run/git/.kitchen.yml
|
849
|
-
- acceptance/top-cookbooks/test_run/git/.kitchen/logs/git-default-ubuntu-1404.log
|
850
|
-
- acceptance/top-cookbooks/test_run/git/.kitchen/logs/git-default-windows-windows-2012r2.log
|
851
|
-
- acceptance/top-cookbooks/test_run/git/.kitchen/logs/kitchen.log
|
852
|
-
- acceptance/top-cookbooks/test_run/git/.rspec
|
853
|
-
- acceptance/top-cookbooks/test_run/git/.rubocop.yml
|
854
|
-
- acceptance/top-cookbooks/test_run/git/.travis.yml
|
855
|
-
- acceptance/top-cookbooks/test_run/git/Berksfile
|
856
|
-
- acceptance/top-cookbooks/test_run/git/CHANGELOG.md
|
857
|
-
- acceptance/top-cookbooks/test_run/git/CONTRIBUTING.md
|
858
|
-
- acceptance/top-cookbooks/test_run/git/Gemfile
|
859
|
-
- acceptance/top-cookbooks/test_run/git/LICENSE
|
860
|
-
- acceptance/top-cookbooks/test_run/git/MAINTAINERS.md
|
861
|
-
- acceptance/top-cookbooks/test_run/git/MAINTAINERS.toml
|
862
|
-
- acceptance/top-cookbooks/test_run/git/README.md
|
863
|
-
- acceptance/top-cookbooks/test_run/git/Rakefile
|
864
|
-
- acceptance/top-cookbooks/test_run/git/TESTING.md
|
865
|
-
- acceptance/top-cookbooks/test_run/git/attributes/default.rb
|
866
|
-
- acceptance/top-cookbooks/test_run/git/chefignore
|
867
|
-
- acceptance/top-cookbooks/test_run/git/libraries/helpers.rb
|
868
|
-
- acceptance/top-cookbooks/test_run/git/libraries/matchers.rb
|
869
|
-
- acceptance/top-cookbooks/test_run/git/libraries/provider_git_client.rb
|
870
|
-
- acceptance/top-cookbooks/test_run/git/libraries/provider_git_client_osx.rb
|
871
|
-
- acceptance/top-cookbooks/test_run/git/libraries/provider_git_client_package.rb
|
872
|
-
- acceptance/top-cookbooks/test_run/git/libraries/provider_git_client_source.rb
|
873
|
-
- acceptance/top-cookbooks/test_run/git/libraries/provider_git_client_windows.rb
|
874
|
-
- acceptance/top-cookbooks/test_run/git/libraries/provider_git_service.rb
|
875
|
-
- acceptance/top-cookbooks/test_run/git/libraries/provider_git_service_xinetd.rb
|
876
|
-
- acceptance/top-cookbooks/test_run/git/libraries/resource_git_client.rb
|
877
|
-
- acceptance/top-cookbooks/test_run/git/libraries/resource_git_service.rb
|
878
|
-
- acceptance/top-cookbooks/test_run/git/libraries/z_provider_mapping.rb
|
879
|
-
- acceptance/top-cookbooks/test_run/git/metadata.rb
|
880
|
-
- acceptance/top-cookbooks/test_run/git/providers/config.rb
|
881
|
-
- acceptance/top-cookbooks/test_run/git/recipes/default.rb
|
882
|
-
- acceptance/top-cookbooks/test_run/git/recipes/package.rb
|
883
|
-
- acceptance/top-cookbooks/test_run/git/recipes/server.rb
|
884
|
-
- acceptance/top-cookbooks/test_run/git/recipes/source.rb
|
885
|
-
- acceptance/top-cookbooks/test_run/git/recipes/windows.rb
|
886
|
-
- acceptance/top-cookbooks/test_run/git/resources/config.rb
|
887
|
-
- acceptance/top-cookbooks/test_run/git/spec/spec_helper.rb
|
888
|
-
- acceptance/top-cookbooks/test_run/git/spec/unit/recipes/default_spec.rb
|
889
|
-
- acceptance/top-cookbooks/test_run/git/spec/unit/recipes/server_spec.rb
|
890
|
-
- acceptance/top-cookbooks/test_run/git/spec/unit/recipes/source_spec.rb
|
891
|
-
- acceptance/top-cookbooks/test_run/git/spec/unit/recipes/windows_spec.rb
|
892
|
-
- acceptance/top-cookbooks/test_run/git/tasks/maintainers.rb
|
893
|
-
- acceptance/top-cookbooks/test_run/git/templates/default/git-xinetd.d.erb
|
894
|
-
- acceptance/top-cookbooks/test_run/git/templates/default/sv-git-daemon-log-run.erb
|
895
|
-
- acceptance/top-cookbooks/test_run/git/templates/default/sv-git-daemon-run.erb
|
896
|
-
- acceptance/top-cookbooks/test_run/git/test/fixtures/cookbooks/git_test/metadata.rb
|
897
|
-
- acceptance/top-cookbooks/test_run/git/test/fixtures/cookbooks/git_test/recipes/default.rb
|
898
|
-
- acceptance/top-cookbooks/test_run/git/test/fixtures/serverspec_helper.rb
|
899
|
-
- acceptance/top-cookbooks/test_run/git/test/integration/default-windows/serverspec/git_installed_windows_spec.rb
|
900
|
-
- acceptance/top-cookbooks/test_run/git/test/integration/default/serverspec/git_installed_linux_spec.rb
|
901
|
-
- acceptance/top-cookbooks/test_run/git/test/integration/server/serverspec/git_daemon_spec.rb
|
902
|
-
- acceptance/top-cookbooks/test_run/git/test/integration/source/serverspec/git_installed_spec.rb
|
903
|
-
- acceptance/top-cookbooks/test_run/iis/.foodcritic
|
904
|
-
- acceptance/top-cookbooks/test_run/iis/.git/HEAD
|
905
|
-
- acceptance/top-cookbooks/test_run/iis/.git/config
|
906
|
-
- acceptance/top-cookbooks/test_run/iis/.git/description
|
907
|
-
- acceptance/top-cookbooks/test_run/iis/.git/hooks/applypatch-msg.sample
|
908
|
-
- acceptance/top-cookbooks/test_run/iis/.git/hooks/commit-msg.sample
|
909
|
-
- acceptance/top-cookbooks/test_run/iis/.git/hooks/post-update.sample
|
910
|
-
- acceptance/top-cookbooks/test_run/iis/.git/hooks/pre-applypatch.sample
|
911
|
-
- acceptance/top-cookbooks/test_run/iis/.git/hooks/pre-commit.sample
|
912
|
-
- acceptance/top-cookbooks/test_run/iis/.git/hooks/pre-push.sample
|
913
|
-
- acceptance/top-cookbooks/test_run/iis/.git/hooks/pre-rebase.sample
|
914
|
-
- acceptance/top-cookbooks/test_run/iis/.git/hooks/prepare-commit-msg.sample
|
915
|
-
- acceptance/top-cookbooks/test_run/iis/.git/hooks/update.sample
|
916
|
-
- acceptance/top-cookbooks/test_run/iis/.git/index
|
917
|
-
- acceptance/top-cookbooks/test_run/iis/.git/info/exclude
|
918
|
-
- acceptance/top-cookbooks/test_run/iis/.git/logs/HEAD
|
919
|
-
- acceptance/top-cookbooks/test_run/iis/.git/logs/refs/heads/deploy
|
920
|
-
- acceptance/top-cookbooks/test_run/iis/.git/logs/refs/heads/master
|
921
|
-
- acceptance/top-cookbooks/test_run/iis/.git/logs/refs/remotes/origin/HEAD
|
922
|
-
- acceptance/top-cookbooks/test_run/iis/.git/objects/pack/pack-8a1c1a1f0e01aef624f58f24354d37bce9483748.idx
|
923
|
-
- acceptance/top-cookbooks/test_run/iis/.git/objects/pack/pack-8a1c1a1f0e01aef624f58f24354d37bce9483748.pack
|
924
|
-
- acceptance/top-cookbooks/test_run/iis/.git/packed-refs
|
925
|
-
- acceptance/top-cookbooks/test_run/iis/.git/refs/heads/deploy
|
926
|
-
- acceptance/top-cookbooks/test_run/iis/.git/refs/heads/master
|
927
|
-
- acceptance/top-cookbooks/test_run/iis/.git/refs/remotes/origin/HEAD
|
928
|
-
- acceptance/top-cookbooks/test_run/iis/.github/ISSUE_TEMPLATE.md
|
929
|
-
- acceptance/top-cookbooks/test_run/iis/.github/PULL_REQUEST_TEMPLATE.md
|
930
|
-
- acceptance/top-cookbooks/test_run/iis/.gitignore
|
931
|
-
- acceptance/top-cookbooks/test_run/iis/.kitchen.yml
|
932
|
-
- acceptance/top-cookbooks/test_run/iis/.kitchen/logs/iis-windows-2012r2.log
|
933
|
-
- acceptance/top-cookbooks/test_run/iis/.kitchen/logs/kitchen.log
|
934
|
-
- acceptance/top-cookbooks/test_run/iis/.rubocop.yml
|
935
|
-
- acceptance/top-cookbooks/test_run/iis/.travis.yml
|
936
|
-
- acceptance/top-cookbooks/test_run/iis/Berksfile
|
937
|
-
- acceptance/top-cookbooks/test_run/iis/CHANGELOG.md
|
938
|
-
- acceptance/top-cookbooks/test_run/iis/CONTRIBUTING.md
|
939
|
-
- acceptance/top-cookbooks/test_run/iis/Gemfile
|
940
|
-
- acceptance/top-cookbooks/test_run/iis/LICENSE
|
941
|
-
- acceptance/top-cookbooks/test_run/iis/MAINTAINERS.md
|
942
|
-
- acceptance/top-cookbooks/test_run/iis/MAINTAINERS.toml
|
943
|
-
- acceptance/top-cookbooks/test_run/iis/README.md
|
944
|
-
- acceptance/top-cookbooks/test_run/iis/Rakefile
|
945
|
-
- acceptance/top-cookbooks/test_run/iis/TESTING.md
|
946
|
-
- acceptance/top-cookbooks/test_run/iis/attributes/default.rb
|
947
|
-
- acceptance/top-cookbooks/test_run/iis/chefignore
|
948
|
-
- acceptance/top-cookbooks/test_run/iis/libraries/helper.rb
|
949
|
-
- acceptance/top-cookbooks/test_run/iis/libraries/matcher.rb
|
950
|
-
- acceptance/top-cookbooks/test_run/iis/libraries/processors.rb
|
951
|
-
- acceptance/top-cookbooks/test_run/iis/metadata.rb
|
952
|
-
- acceptance/top-cookbooks/test_run/iis/providers/app.rb
|
953
|
-
- acceptance/top-cookbooks/test_run/iis/providers/config.rb
|
954
|
-
- acceptance/top-cookbooks/test_run/iis/providers/module.rb
|
955
|
-
- acceptance/top-cookbooks/test_run/iis/providers/pool.rb
|
956
|
-
- acceptance/top-cookbooks/test_run/iis/providers/root.rb
|
957
|
-
- acceptance/top-cookbooks/test_run/iis/providers/section.rb
|
958
|
-
- acceptance/top-cookbooks/test_run/iis/providers/site.rb
|
959
|
-
- acceptance/top-cookbooks/test_run/iis/providers/vdir.rb
|
960
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/default.rb
|
961
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_application_initialization.rb
|
962
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_aspnet.rb
|
963
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_aspnet45.rb
|
964
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_auth_anonymous.rb
|
965
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_auth_basic.rb
|
966
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_auth_digest.rb
|
967
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_auth_windows.rb
|
968
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_cgi.rb
|
969
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_compress_dynamic.rb
|
970
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_compress_static.rb
|
971
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_ftp.rb
|
972
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_iis6_metabase_compat.rb
|
973
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_isapi.rb
|
974
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_logging.rb
|
975
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_management.rb
|
976
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_security.rb
|
977
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/mod_tracing.rb
|
978
|
-
- acceptance/top-cookbooks/test_run/iis/recipes/remove_default_site.rb
|
979
|
-
- acceptance/top-cookbooks/test_run/iis/resources/app.rb
|
980
|
-
- acceptance/top-cookbooks/test_run/iis/resources/config.rb
|
981
|
-
- acceptance/top-cookbooks/test_run/iis/resources/module.rb
|
982
|
-
- acceptance/top-cookbooks/test_run/iis/resources/pool.rb
|
983
|
-
- acceptance/top-cookbooks/test_run/iis/resources/root.rb
|
984
|
-
- acceptance/top-cookbooks/test_run/iis/resources/section.rb
|
985
|
-
- acceptance/top-cookbooks/test_run/iis/resources/site.rb
|
986
|
-
- acceptance/top-cookbooks/test_run/iis/resources/vdir.rb
|
987
|
-
- acceptance/top-cookbooks/test_run/iis/spec/spec_helper.rb
|
988
|
-
- acceptance/top-cookbooks/test_run/iis/spec/unit/recipes/default_spec.rb
|
989
|
-
- acceptance/top-cookbooks/test_run/iis/spec/unit/recipes/remove_default_site_spec.rb
|
990
|
-
- acceptance/top-cookbooks/test_run/iis/tasks/maintainers.rb
|
991
|
-
- acceptance/top-cookbooks/test_run/iis/test/fixtures/cookbooks/iis_test/README.md
|
992
|
-
- acceptance/top-cookbooks/test_run/iis/test/fixtures/cookbooks/iis_test/metadata.rb
|
993
|
-
- acceptance/top-cookbooks/test_run/iis/test/fixtures/cookbooks/iis_test/recipes/default.rb
|
994
|
-
- acceptance/top-cookbooks/test_run/iis/test/integration/default/pester/default.tests.ps1
|
995
|
-
- acceptance/top-cookbooks/test_run/iis/test/integration/default/serverspec/default_spec.rb
|
996
|
-
- acceptance/top-cookbooks/test_run/iis/test/integration/default/serverspec/remove_default_site_spec.rb
|
997
|
-
- acceptance/top-cookbooks/test_run/iis/test/integration/default/serverspec/spec_helper.rb
|
998
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.chef-repo.txt
|
999
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/HEAD
|
1000
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/config
|
1001
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/description
|
1002
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/hooks/applypatch-msg.sample
|
1003
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/hooks/commit-msg.sample
|
1004
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/hooks/post-update.sample
|
1005
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/hooks/pre-applypatch.sample
|
1006
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/hooks/pre-commit.sample
|
1007
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/hooks/pre-push.sample
|
1008
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/hooks/pre-rebase.sample
|
1009
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/hooks/prepare-commit-msg.sample
|
1010
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/hooks/update.sample
|
1011
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/index
|
1012
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/info/exclude
|
1013
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/logs/HEAD
|
1014
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/logs/refs/heads/deploy
|
1015
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/logs/refs/heads/master
|
1016
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/logs/refs/remotes/origin/HEAD
|
1017
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/objects/pack/pack-ae748c2a09777da04c30200d2311544ad76beec7.idx
|
1018
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/objects/pack/pack-ae748c2a09777da04c30200d2311544ad76beec7.pack
|
1019
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/packed-refs
|
1020
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/refs/heads/deploy
|
1021
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/refs/heads/master
|
1022
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.git/refs/remotes/origin/HEAD
|
1023
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/.gitignore
|
1024
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/LICENSE
|
1025
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/README.md
|
1026
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/chefignore
|
1027
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/.gitignore
|
1028
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/.kitchen.yml
|
1029
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/Berksfile
|
1030
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/README.md
|
1031
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/attributes/default.rb
|
1032
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/chefignore
|
1033
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/metadata.rb
|
1034
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/recipes/default.rb
|
1035
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/recipes/node.rb
|
1036
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/recipes/server.rb
|
1037
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/recipes/workstation.rb
|
1038
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/spec/spec_helper.rb
|
1039
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/spec/unit/recipes/default_spec.rb
|
1040
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/spec/unit/recipes/node_spec.rb
|
1041
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/spec/unit/recipes/server_spec.rb
|
1042
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/spec/unit/recipes/workstation_spec.rb
|
1043
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/test/integration/default/serverspec/default_spec.rb
|
1044
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/test/integration/helpers/serverspec/spec_helper.rb
|
1045
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/test/integration/nodes/chef-server-.json
|
1046
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/test/integration/nodes/node-1.json
|
1047
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/install_and_manage_chef_server/test/integration/roles/base.json
|
1048
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/.gitignore
|
1049
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/.kitchen.yml
|
1050
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/Berksfile
|
1051
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/README.md
|
1052
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/attributes/default.rb
|
1053
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/chefignore
|
1054
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/libraries/init.rb
|
1055
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/metadata.rb
|
1056
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/recipes/default.rb
|
1057
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/recipes/lesson1.rb
|
1058
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/recipes/lesson2.rb
|
1059
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/recipes/lesson3.rb
|
1060
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/recipes/setup.rb
|
1061
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/spec/spec_helper.rb
|
1062
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/spec/unit/recipes/default_spec.rb
|
1063
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/test/integration/default/serverspec/default_spec.rb
|
1064
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-rhel/test/integration/helpers/serverspec/spec_helper.rb
|
1065
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/.gitignore
|
1066
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/.kitchen.yml
|
1067
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/.kitchen/logs/kitchen.log
|
1068
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/.kitchen/logs/learn-the-basics-ubuntu-default-ubuntu-1404.log
|
1069
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/Berksfile
|
1070
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/README.md
|
1071
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/chefignore
|
1072
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/libraries/init.rb
|
1073
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/metadata.rb
|
1074
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/recipes/default.rb
|
1075
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/recipes/lesson1.rb
|
1076
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/recipes/lesson2.rb
|
1077
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/recipes/lesson3.rb
|
1078
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/recipes/setup.rb
|
1079
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/spec/spec_helper.rb
|
1080
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/spec/unit/recipes/default_spec.rb
|
1081
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/test/integration/default/serverspec/default_spec.rb
|
1082
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-ubuntu/test/integration/helpers/serverspec/spec_helper.rb
|
1083
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/.gitignore
|
1084
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/.kitchen.yml
|
1085
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/Berksfile
|
1086
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/README.md
|
1087
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/attributes/default.rb
|
1088
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/chefignore
|
1089
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/libraries/init.rb
|
1090
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/metadata.rb
|
1091
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/recipes/default.rb
|
1092
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/recipes/lesson1.rb
|
1093
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/recipes/lesson2.rb
|
1094
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/recipes/lesson3.rb
|
1095
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/recipes/setup.rb
|
1096
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/spec/spec_helper.rb
|
1097
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/spec/unit/recipes/default_spec.rb
|
1098
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/test/integration/default/serverspec/default_spec.rb
|
1099
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/learn-the-basics-windows/test/integration/helpers/serverspec/spec_helper.rb
|
1100
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/.gitignore
|
1101
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/.kitchen.yml
|
1102
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/Berksfile
|
1103
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/README.md
|
1104
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/attributes/default.rb
|
1105
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/chefignore
|
1106
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/libraries/cache_helpers.rb
|
1107
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/libraries/string_helpers.rb
|
1108
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/libraries/task_helpers.rb
|
1109
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/metadata.rb
|
1110
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/recipes/default.rb
|
1111
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/resources/task.rb
|
1112
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/resources/task_options.rb
|
1113
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/spec/spec_helper.rb
|
1114
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/spec/unit/recipes/default_spec.rb
|
1115
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/test/integration/default/serverspec/default_spec.rb
|
1116
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/test/integration/helpers/serverspec/spec_helper.rb
|
1117
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.chef-repo.txt
|
1118
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/HEAD
|
1119
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/config
|
1120
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/description
|
1121
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/hooks/applypatch-msg.sample
|
1122
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/hooks/commit-msg.sample
|
1123
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/hooks/post-update.sample
|
1124
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/hooks/pre-applypatch.sample
|
1125
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/hooks/pre-commit.sample
|
1126
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/hooks/pre-push.sample
|
1127
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/hooks/pre-rebase.sample
|
1128
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/hooks/prepare-commit-msg.sample
|
1129
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/hooks/update.sample
|
1130
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/index
|
1131
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/info/exclude
|
1132
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/logs/HEAD
|
1133
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/logs/refs/heads/deploy
|
1134
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/logs/refs/heads/master
|
1135
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/logs/refs/remotes/origin/HEAD
|
1136
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/objects/pack/pack-ae748c2a09777da04c30200d2311544ad76beec7.idx
|
1137
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/objects/pack/pack-ae748c2a09777da04c30200d2311544ad76beec7.pack
|
1138
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/packed-refs
|
1139
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/refs/heads/deploy
|
1140
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/refs/heads/master
|
1141
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.git/refs/remotes/origin/HEAD
|
1142
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/.gitignore
|
1143
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/LICENSE
|
1144
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/README.md
|
1145
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/chefignore
|
1146
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/.gitignore
|
1147
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/.kitchen.yml
|
1148
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/Berksfile
|
1149
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/README.md
|
1150
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/attributes/default.rb
|
1151
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/chefignore
|
1152
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/metadata.rb
|
1153
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/recipes/default.rb
|
1154
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/recipes/node.rb
|
1155
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/recipes/server.rb
|
1156
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/recipes/workstation.rb
|
1157
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/spec/spec_helper.rb
|
1158
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/spec/unit/recipes/default_spec.rb
|
1159
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/spec/unit/recipes/node_spec.rb
|
1160
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/spec/unit/recipes/server_spec.rb
|
1161
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/spec/unit/recipes/workstation_spec.rb
|
1162
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/test/integration/default/serverspec/default_spec.rb
|
1163
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/test/integration/helpers/serverspec/spec_helper.rb
|
1164
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/test/integration/nodes/chef-server-.json
|
1165
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/test/integration/nodes/node-1.json
|
1166
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/install_and_manage_chef_server/test/integration/roles/base.json
|
1167
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/.gitignore
|
1168
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/.kitchen.yml
|
1169
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/Berksfile
|
1170
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/README.md
|
1171
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/attributes/default.rb
|
1172
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/chefignore
|
1173
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/libraries/init.rb
|
1174
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/metadata.rb
|
1175
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/recipes/default.rb
|
1176
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/recipes/lesson1.rb
|
1177
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/recipes/lesson2.rb
|
1178
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/recipes/lesson3.rb
|
1179
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/recipes/setup.rb
|
1180
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/spec/spec_helper.rb
|
1181
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/spec/unit/recipes/default_spec.rb
|
1182
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/test/integration/default/serverspec/default_spec.rb
|
1183
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-rhel/test/integration/helpers/serverspec/spec_helper.rb
|
1184
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/.gitignore
|
1185
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/.kitchen.yml
|
1186
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/Berksfile
|
1187
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/README.md
|
1188
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/chefignore
|
1189
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/libraries/init.rb
|
1190
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/metadata.rb
|
1191
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/recipes/default.rb
|
1192
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/recipes/lesson1.rb
|
1193
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/recipes/lesson2.rb
|
1194
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/recipes/lesson3.rb
|
1195
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/recipes/setup.rb
|
1196
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/spec/spec_helper.rb
|
1197
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/spec/unit/recipes/default_spec.rb
|
1198
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/test/integration/default/serverspec/default_spec.rb
|
1199
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/test/integration/helpers/serverspec/spec_helper.rb
|
1200
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/.gitignore
|
1201
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/.kitchen.yml
|
1202
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/.kitchen/logs/kitchen.log
|
1203
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/.kitchen/logs/learn-the-basics-windows-default-windows-2012r2.log
|
1204
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/Berksfile
|
1205
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/README.md
|
1206
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/attributes/default.rb
|
1207
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/chefignore
|
1208
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/libraries/init.rb
|
1209
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/metadata.rb
|
1210
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/recipes/default.rb
|
1211
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/recipes/lesson1.rb
|
1212
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/recipes/lesson2.rb
|
1213
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/recipes/lesson3.rb
|
1214
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/recipes/setup.rb
|
1215
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/spec/spec_helper.rb
|
1216
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/spec/unit/recipes/default_spec.rb
|
1217
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/test/integration/default/serverspec/default_spec.rb
|
1218
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-windows/test/integration/helpers/serverspec/spec_helper.rb
|
1219
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/.gitignore
|
1220
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/.kitchen.yml
|
1221
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/Berksfile
|
1222
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/README.md
|
1223
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/attributes/default.rb
|
1224
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/chefignore
|
1225
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/libraries/cache_helpers.rb
|
1226
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/libraries/string_helpers.rb
|
1227
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/libraries/task_helpers.rb
|
1228
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/metadata.rb
|
1229
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/recipes/default.rb
|
1230
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/resources/task.rb
|
1231
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/resources/task_options.rb
|
1232
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/spec/spec_helper.rb
|
1233
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/spec/unit/recipes/default_spec.rb
|
1234
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/test/integration/default/serverspec/default_spec.rb
|
1235
|
-
- acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/test/integration/helpers/serverspec/spec_helper.rb
|
1236
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/HEAD
|
1237
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/config
|
1238
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/description
|
1239
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/hooks/applypatch-msg.sample
|
1240
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/hooks/commit-msg.sample
|
1241
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/hooks/post-update.sample
|
1242
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/hooks/pre-applypatch.sample
|
1243
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/hooks/pre-commit.sample
|
1244
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/hooks/pre-push.sample
|
1245
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/hooks/pre-rebase.sample
|
1246
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/hooks/prepare-commit-msg.sample
|
1247
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/hooks/update.sample
|
1248
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/index
|
1249
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/info/exclude
|
1250
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/logs/HEAD
|
1251
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/logs/refs/heads/deploy
|
1252
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/logs/refs/heads/master
|
1253
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/logs/refs/remotes/origin/HEAD
|
1254
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/objects/pack/pack-d4f66d7733e0287e23c486f3b19b93393af2dab8.idx
|
1255
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/objects/pack/pack-d4f66d7733e0287e23c486f3b19b93393af2dab8.pack
|
1256
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/packed-refs
|
1257
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/refs/heads/deploy
|
1258
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/refs/heads/master
|
1259
|
-
- acceptance/top-cookbooks/test_run/powershell/.git/refs/remotes/origin/HEAD
|
1260
|
-
- acceptance/top-cookbooks/test_run/powershell/.github/ISSUE_TEMPLATE.md
|
1261
|
-
- acceptance/top-cookbooks/test_run/powershell/.github/PULL_REQUEST_TEMPLATE.md
|
1262
|
-
- acceptance/top-cookbooks/test_run/powershell/.gitignore
|
1263
|
-
- acceptance/top-cookbooks/test_run/powershell/.kitchen.cloud.yml
|
1264
|
-
- acceptance/top-cookbooks/test_run/powershell/.kitchen.yml
|
1265
|
-
- acceptance/top-cookbooks/test_run/powershell/.kitchen/logs/kitchen.log
|
1266
|
-
- acceptance/top-cookbooks/test_run/powershell/.kitchen/logs/powershell-windows-2012r2.log
|
1267
|
-
- acceptance/top-cookbooks/test_run/powershell/.rubocop.yml
|
1268
|
-
- acceptance/top-cookbooks/test_run/powershell/.travis.yml
|
1269
|
-
- acceptance/top-cookbooks/test_run/powershell/Berksfile
|
1270
|
-
- acceptance/top-cookbooks/test_run/powershell/CHANGELOG.md
|
1271
|
-
- acceptance/top-cookbooks/test_run/powershell/CONTRIBUTING.md
|
1272
|
-
- acceptance/top-cookbooks/test_run/powershell/Gemfile
|
1273
|
-
- acceptance/top-cookbooks/test_run/powershell/LICENSE
|
1274
|
-
- acceptance/top-cookbooks/test_run/powershell/MAINTAINERS.md
|
1275
|
-
- acceptance/top-cookbooks/test_run/powershell/MAINTAINERS.toml
|
1276
|
-
- acceptance/top-cookbooks/test_run/powershell/README.md
|
1277
|
-
- acceptance/top-cookbooks/test_run/powershell/Rakefile
|
1278
|
-
- acceptance/top-cookbooks/test_run/powershell/TESTING.md
|
1279
|
-
- acceptance/top-cookbooks/test_run/powershell/appveyor.yml
|
1280
|
-
- acceptance/top-cookbooks/test_run/powershell/attributes/bits_4.rb
|
1281
|
-
- acceptance/top-cookbooks/test_run/powershell/attributes/config_lcm.rb
|
1282
|
-
- acceptance/top-cookbooks/test_run/powershell/attributes/default.rb
|
1283
|
-
- acceptance/top-cookbooks/test_run/powershell/attributes/powershell2.rb
|
1284
|
-
- acceptance/top-cookbooks/test_run/powershell/attributes/powershell3.rb
|
1285
|
-
- acceptance/top-cookbooks/test_run/powershell/attributes/powershell4.rb
|
1286
|
-
- acceptance/top-cookbooks/test_run/powershell/attributes/powershell5.rb
|
1287
|
-
- acceptance/top-cookbooks/test_run/powershell/chefignore
|
1288
|
-
- acceptance/top-cookbooks/test_run/powershell/libraries/powershell_module_provider.rb
|
1289
|
-
- acceptance/top-cookbooks/test_run/powershell/libraries/powershell_module_resource.rb
|
1290
|
-
- acceptance/top-cookbooks/test_run/powershell/libraries/powershell_version.rb
|
1291
|
-
- acceptance/top-cookbooks/test_run/powershell/metadata.rb
|
1292
|
-
- acceptance/top-cookbooks/test_run/powershell/providers/default.rb
|
1293
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/default.rb
|
1294
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/disable_lcm.rb
|
1295
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/dsc.rb
|
1296
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/enable_dsc_script.rb
|
1297
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/enable_lcm.rb
|
1298
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/powershell2.rb
|
1299
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/powershell3.rb
|
1300
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/powershell4.rb
|
1301
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/powershell5.rb
|
1302
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/powershell_module.rb
|
1303
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/windows_reboot.rb
|
1304
|
-
- acceptance/top-cookbooks/test_run/powershell/recipes/winrm.rb
|
1305
|
-
- acceptance/top-cookbooks/test_run/powershell/resources/default.rb
|
1306
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/helpers/matchers.rb
|
1307
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/libraries/powershell_module_provider_spec.rb
|
1308
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/libraries/powershell_module_resource_spec.rb
|
1309
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/libraries/powershell_version_spec.rb
|
1310
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/recipes/disable_lcm_spec.rb
|
1311
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/recipes/dsc_spec.rb
|
1312
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/recipes/enable_dsc_script_spec.rb
|
1313
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/recipes/enable_lcm_spec.rb
|
1314
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/recipes/powershell2_spec.rb
|
1315
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/recipes/powershell3_spec.rb
|
1316
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/recipes/powershell4_spec.rb
|
1317
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/recipes/powershell5_spec.rb
|
1318
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/recipes/winrm_spec.rb
|
1319
|
-
- acceptance/top-cookbooks/test_run/powershell/spec/spec_helper.rb
|
1320
|
-
- acceptance/top-cookbooks/test_run/powershell/tasks/maintainers.rb
|
1321
|
-
- acceptance/top-cookbooks/test_run/powershell/test/cookbooks/minimal/metadata.rb
|
1322
|
-
- acceptance/top-cookbooks/test_run/powershell/test/cookbooks/minimal/recipes/default.rb
|
1323
|
-
- acceptance/top-cookbooks/test_run/sql_server/.foodcritic
|
1324
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/HEAD
|
1325
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/config
|
1326
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/description
|
1327
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/hooks/applypatch-msg.sample
|
1328
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/hooks/commit-msg.sample
|
1329
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/hooks/post-update.sample
|
1330
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/hooks/pre-applypatch.sample
|
1331
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/hooks/pre-commit.sample
|
1332
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/hooks/pre-push.sample
|
1333
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/hooks/pre-rebase.sample
|
1334
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/hooks/prepare-commit-msg.sample
|
1335
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/hooks/update.sample
|
1336
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/index
|
1337
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/info/exclude
|
1338
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/logs/HEAD
|
1339
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/logs/refs/heads/deploy
|
1340
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/logs/refs/heads/master
|
1341
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/logs/refs/remotes/origin/HEAD
|
1342
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/objects/pack/pack-7067524c3298f94964a2fd3699462ba3c890778a.idx
|
1343
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/objects/pack/pack-7067524c3298f94964a2fd3699462ba3c890778a.pack
|
1344
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/packed-refs
|
1345
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/refs/heads/deploy
|
1346
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/refs/heads/master
|
1347
|
-
- acceptance/top-cookbooks/test_run/sql_server/.git/refs/remotes/origin/HEAD
|
1348
|
-
- acceptance/top-cookbooks/test_run/sql_server/.github/ISSUE_TEMPLATE.md
|
1349
|
-
- acceptance/top-cookbooks/test_run/sql_server/.github/PULL_REQUEST_TEMPLATE.md
|
1350
|
-
- acceptance/top-cookbooks/test_run/sql_server/.gitignore
|
1351
|
-
- acceptance/top-cookbooks/test_run/sql_server/.kitchen.yml
|
1352
|
-
- acceptance/top-cookbooks/test_run/sql_server/.kitchen/logs/kitchen.log
|
1353
|
-
- acceptance/top-cookbooks/test_run/sql_server/.kitchen/logs/sql-server-windows-2012r2.log
|
1354
|
-
- acceptance/top-cookbooks/test_run/sql_server/.rubocop.yml
|
1355
|
-
- acceptance/top-cookbooks/test_run/sql_server/.travis.yml
|
1356
|
-
- acceptance/top-cookbooks/test_run/sql_server/Berksfile
|
1357
|
-
- acceptance/top-cookbooks/test_run/sql_server/CHANGELOG.md
|
1358
|
-
- acceptance/top-cookbooks/test_run/sql_server/CONTRIBUTING.md
|
1359
|
-
- acceptance/top-cookbooks/test_run/sql_server/Gemfile
|
1360
|
-
- acceptance/top-cookbooks/test_run/sql_server/LICENSE
|
1361
|
-
- acceptance/top-cookbooks/test_run/sql_server/MAINTAINERS.md
|
1362
|
-
- acceptance/top-cookbooks/test_run/sql_server/MAINTAINERS.toml
|
1363
|
-
- acceptance/top-cookbooks/test_run/sql_server/README.md
|
1364
|
-
- acceptance/top-cookbooks/test_run/sql_server/Rakefile
|
1365
|
-
- acceptance/top-cookbooks/test_run/sql_server/TESTING.md
|
1366
|
-
- acceptance/top-cookbooks/test_run/sql_server/appveyor.yml
|
1367
|
-
- acceptance/top-cookbooks/test_run/sql_server/attributes/client.rb
|
1368
|
-
- acceptance/top-cookbooks/test_run/sql_server/attributes/default.rb
|
1369
|
-
- acceptance/top-cookbooks/test_run/sql_server/attributes/server.rb
|
1370
|
-
- acceptance/top-cookbooks/test_run/sql_server/chefignore
|
1371
|
-
- acceptance/top-cookbooks/test_run/sql_server/libraries/helper.rb
|
1372
|
-
- acceptance/top-cookbooks/test_run/sql_server/metadata.rb
|
1373
|
-
- acceptance/top-cookbooks/test_run/sql_server/recipes/client.rb
|
1374
|
-
- acceptance/top-cookbooks/test_run/sql_server/recipes/default.rb
|
1375
|
-
- acceptance/top-cookbooks/test_run/sql_server/recipes/server.rb
|
1376
|
-
- acceptance/top-cookbooks/test_run/sql_server/spec/spec_helper.rb
|
1377
|
-
- acceptance/top-cookbooks/test_run/sql_server/spec/unit/recipes/server_spec.rb
|
1378
|
-
- acceptance/top-cookbooks/test_run/sql_server/tasks/maintainers.rb
|
1379
|
-
- acceptance/top-cookbooks/test_run/sql_server/templates/default/ConfigurationFile.ini.erb
|
1380
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/HEAD
|
1381
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/config
|
1382
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/description
|
1383
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/hooks/applypatch-msg.sample
|
1384
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/hooks/commit-msg.sample
|
1385
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/hooks/post-update.sample
|
1386
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/hooks/pre-applypatch.sample
|
1387
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/hooks/pre-commit.sample
|
1388
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/hooks/pre-push.sample
|
1389
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/hooks/pre-rebase.sample
|
1390
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/hooks/prepare-commit-msg.sample
|
1391
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/hooks/update.sample
|
1392
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/index
|
1393
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/info/exclude
|
1394
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/logs/HEAD
|
1395
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/logs/refs/heads/deploy
|
1396
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/logs/refs/heads/master
|
1397
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/logs/refs/remotes/origin/HEAD
|
1398
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/objects/pack/pack-648e01e5bbec259844410e0d114d8da194ca6ac9.idx
|
1399
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/objects/pack/pack-648e01e5bbec259844410e0d114d8da194ca6ac9.pack
|
1400
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/packed-refs
|
1401
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/refs/heads/deploy
|
1402
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/refs/heads/master
|
1403
|
-
- acceptance/top-cookbooks/test_run/winbox/.git/refs/remotes/origin/HEAD
|
1404
|
-
- acceptance/top-cookbooks/test_run/winbox/.gitignore
|
1405
|
-
- acceptance/top-cookbooks/test_run/winbox/.kitchen.yml
|
1406
|
-
- acceptance/top-cookbooks/test_run/winbox/.kitchen/logs/default-windows-2012r2.log
|
1407
|
-
- acceptance/top-cookbooks/test_run/winbox/.kitchen/logs/kitchen.log
|
1408
|
-
- acceptance/top-cookbooks/test_run/winbox/Berksfile
|
1409
|
-
- acceptance/top-cookbooks/test_run/winbox/README.md
|
1410
|
-
- acceptance/top-cookbooks/test_run/winbox/attributes/debugger_install_path.rb
|
1411
|
-
- acceptance/top-cookbooks/test_run/winbox/attributes/editor.rb
|
1412
|
-
- acceptance/top-cookbooks/test_run/winbox/files/default/ConEmu.xml
|
1413
|
-
- acceptance/top-cookbooks/test_run/winbox/files/default/chef-dk.ico
|
1414
|
-
- acceptance/top-cookbooks/test_run/winbox/files/default/get-help-full.ps1
|
1415
|
-
- acceptance/top-cookbooks/test_run/winbox/files/default/install.ps1
|
1416
|
-
- acceptance/top-cookbooks/test_run/winbox/files/default/set-location-docs.ps1
|
1417
|
-
- acceptance/top-cookbooks/test_run/winbox/files/default/start-chefdk.ps1
|
1418
|
-
- acceptance/top-cookbooks/test_run/winbox/files/default/vscode-keybindings.json
|
1419
|
-
- acceptance/top-cookbooks/test_run/winbox/files/default/vscode-settings.json
|
1420
|
-
- acceptance/top-cookbooks/test_run/winbox/files/default/winbox-ps-profile.ps1
|
1421
|
-
- acceptance/top-cookbooks/test_run/winbox/libraries/executable_finder.rb
|
1422
|
-
- acceptance/top-cookbooks/test_run/winbox/libraries/git_information.rb
|
1423
|
-
- acceptance/top-cookbooks/test_run/winbox/metadata.rb
|
1424
|
-
- acceptance/top-cookbooks/test_run/winbox/recipes/chefdk.rb
|
1425
|
-
- acceptance/top-cookbooks/test_run/winbox/recipes/chefdk_shortcut.rb
|
1426
|
-
- acceptance/top-cookbooks/test_run/winbox/recipes/chocolatey_install.rb
|
1427
|
-
- acceptance/top-cookbooks/test_run/winbox/recipes/console.rb
|
1428
|
-
- acceptance/top-cookbooks/test_run/winbox/recipes/debugger.rb
|
1429
|
-
- acceptance/top-cookbooks/test_run/winbox/recipes/default.rb
|
1430
|
-
- acceptance/top-cookbooks/test_run/winbox/recipes/editor.rb
|
1431
|
-
- acceptance/top-cookbooks/test_run/winbox/recipes/powershell_dev.rb
|
1432
|
-
- acceptance/top-cookbooks/test_run/winbox/recipes/readline.rb
|
1433
|
-
- acceptance/top-cookbooks/test_run/winbox/recipes/vscode_emacs.rb
|
1434
656
|
- acceptance/trivial/.acceptance/acceptance-cookbook/.gitignore
|
1435
657
|
- acceptance/trivial/.acceptance/acceptance-cookbook/metadata.rb
|
1436
658
|
- acceptance/trivial/.acceptance/acceptance-cookbook/recipes/destroy.rb
|
1437
659
|
- acceptance/trivial/.acceptance/acceptance-cookbook/recipes/provision.rb
|
1438
660
|
- acceptance/trivial/.acceptance/acceptance-cookbook/recipes/verify.rb
|
1439
661
|
- acceptance/trivial/.kitchen.yml
|
1440
|
-
- acceptance/trivial/.kitchen/logs/chef-current-install-windows-2012r2.log
|
1441
|
-
- acceptance/trivial/.kitchen/logs/kitchen.log
|
1442
662
|
- acceptance/trivial/test/integration/chef-current-install/inspec/chef_client_spec.rb
|
1443
663
|
- acceptance/windows-service/.acceptance/acceptance-cookbook/.gitignore
|
1444
664
|
- acceptance/windows-service/.acceptance/acceptance-cookbook/metadata.rb
|
@@ -1446,8 +666,6 @@ files:
|
|
1446
666
|
- acceptance/windows-service/.acceptance/acceptance-cookbook/recipes/provision.rb
|
1447
667
|
- acceptance/windows-service/.acceptance/acceptance-cookbook/recipes/verify.rb
|
1448
668
|
- acceptance/windows-service/.kitchen.yml
|
1449
|
-
- acceptance/windows-service/.kitchen/logs/chef-windows-service-windows-2012r2.log
|
1450
|
-
- acceptance/windows-service/.kitchen/logs/kitchen.log
|
1451
669
|
- acceptance/windows-service/test/integration/chef-windows-service/inspec/chef_windows_service_spec.rb
|
1452
670
|
- bin/chef-apply
|
1453
671
|
- bin/chef-client
|
@@ -1791,6 +1009,7 @@ files:
|
|
1791
1009
|
- lib/chef/decorator.rb
|
1792
1010
|
- lib/chef/decorator/lazy.rb
|
1793
1011
|
- lib/chef/decorator/lazy_array.rb
|
1012
|
+
- lib/chef/decorator/unchain.rb
|
1794
1013
|
- lib/chef/delayed_evaluator.rb
|
1795
1014
|
- lib/chef/deprecation/mixin/template.rb
|
1796
1015
|
- lib/chef/deprecation/provider/cookbook_file.rb
|
@@ -2015,6 +1234,13 @@ files:
|
|
2015
1234
|
- lib/chef/knife/ssl_check.rb
|
2016
1235
|
- lib/chef/knife/ssl_fetch.rb
|
2017
1236
|
- lib/chef/knife/status.rb
|
1237
|
+
- lib/chef/knife/supermarket_download.rb
|
1238
|
+
- lib/chef/knife/supermarket_install.rb
|
1239
|
+
- lib/chef/knife/supermarket_list.rb
|
1240
|
+
- lib/chef/knife/supermarket_search.rb
|
1241
|
+
- lib/chef/knife/supermarket_share.rb
|
1242
|
+
- lib/chef/knife/supermarket_show.rb
|
1243
|
+
- lib/chef/knife/supermarket_unshare.rb
|
2018
1244
|
- lib/chef/knife/tag_create.rb
|
2019
1245
|
- lib/chef/knife/tag_delete.rb
|
2020
1246
|
- lib/chef/knife/tag_list.rb
|
@@ -2086,6 +1312,7 @@ files:
|
|
2086
1312
|
- lib/chef/node.rb
|
2087
1313
|
- lib/chef/node/attribute.rb
|
2088
1314
|
- lib/chef/node/attribute_collections.rb
|
1315
|
+
- lib/chef/node/common_api.rb
|
2089
1316
|
- lib/chef/node/immutable_collections.rb
|
2090
1317
|
- lib/chef/node_map.rb
|
2091
1318
|
- lib/chef/null_logger.rb
|
@@ -2816,15 +2043,56 @@ files:
|
|
2816
2043
|
- spec/integration/knife/chef_repo_path_spec.rb
|
2817
2044
|
- spec/integration/knife/chef_repository_file_system_spec.rb
|
2818
2045
|
- spec/integration/knife/chefignore_spec.rb
|
2046
|
+
- spec/integration/knife/client_bulk_delete_spec.rb
|
2047
|
+
- spec/integration/knife/client_create_spec.rb
|
2048
|
+
- spec/integration/knife/client_delete_spec.rb
|
2049
|
+
- spec/integration/knife/client_key_create_spec.rb
|
2050
|
+
- spec/integration/knife/client_key_delete_spec.rb
|
2051
|
+
- spec/integration/knife/client_key_list_spec.rb
|
2052
|
+
- spec/integration/knife/client_key_show_spec.rb
|
2053
|
+
- spec/integration/knife/client_list_spec.rb
|
2054
|
+
- spec/integration/knife/client_show_spec.rb
|
2819
2055
|
- spec/integration/knife/common_options_spec.rb
|
2820
2056
|
- spec/integration/knife/cookbook_api_ipv6_spec.rb
|
2057
|
+
- spec/integration/knife/cookbook_bulk_delete_spec.rb
|
2058
|
+
- spec/integration/knife/cookbook_download_spec.rb
|
2059
|
+
- spec/integration/knife/cookbook_list_spec.rb
|
2060
|
+
- spec/integration/knife/cookbook_show_spec.rb
|
2061
|
+
- spec/integration/knife/cookbook_upload_spec.rb
|
2062
|
+
- spec/integration/knife/data_bag_create_spec.rb
|
2063
|
+
- spec/integration/knife/data_bag_delete_spec.rb
|
2064
|
+
- spec/integration/knife/data_bag_from_file_spec.rb
|
2065
|
+
- spec/integration/knife/data_bag_list_spec.rb
|
2066
|
+
- spec/integration/knife/data_bag_show_spec.rb
|
2821
2067
|
- spec/integration/knife/delete_spec.rb
|
2822
2068
|
- spec/integration/knife/deps_spec.rb
|
2823
2069
|
- spec/integration/knife/diff_spec.rb
|
2824
2070
|
- spec/integration/knife/download_spec.rb
|
2071
|
+
- spec/integration/knife/environment_compare_spec.rb
|
2072
|
+
- spec/integration/knife/environment_create_spec.rb
|
2073
|
+
- spec/integration/knife/environment_delete_spec.rb
|
2074
|
+
- spec/integration/knife/environment_from_file_spec.rb
|
2075
|
+
- spec/integration/knife/environment_list_spec.rb
|
2076
|
+
- spec/integration/knife/environment_show_spec.rb
|
2825
2077
|
- spec/integration/knife/list_spec.rb
|
2078
|
+
- spec/integration/knife/node_bulk_delete_spec.rb
|
2079
|
+
- spec/integration/knife/node_create_spec.rb
|
2080
|
+
- spec/integration/knife/node_delete_spec.rb
|
2081
|
+
- spec/integration/knife/node_environment_set_spec.rb
|
2082
|
+
- spec/integration/knife/node_from_file_spec.rb
|
2083
|
+
- spec/integration/knife/node_list_spec.rb
|
2084
|
+
- spec/integration/knife/node_run_list_add_spec.rb
|
2085
|
+
- spec/integration/knife/node_run_list_remove_spec.rb
|
2086
|
+
- spec/integration/knife/node_run_list_set_spec.rb
|
2087
|
+
- spec/integration/knife/node_show_spec.rb
|
2826
2088
|
- spec/integration/knife/raw_spec.rb
|
2827
2089
|
- spec/integration/knife/redirection_spec.rb
|
2090
|
+
- spec/integration/knife/role_bulk_delete_spec.rb
|
2091
|
+
- spec/integration/knife/role_create_spec.rb
|
2092
|
+
- spec/integration/knife/role_delete_spec.rb
|
2093
|
+
- spec/integration/knife/role_from_file_spec.rb
|
2094
|
+
- spec/integration/knife/role_list_spec.rb
|
2095
|
+
- spec/integration/knife/role_show_spec.rb
|
2828
2096
|
- spec/integration/knife/serve_spec.rb
|
2829
2097
|
- spec/integration/knife/show_spec.rb
|
2830
2098
|
- spec/integration/knife/upload_spec.rb
|
@@ -3138,6 +2406,7 @@ files:
|
|
3138
2406
|
- spec/unit/monologger_spec.rb
|
3139
2407
|
- spec/unit/node/attribute_spec.rb
|
3140
2408
|
- spec/unit/node/immutable_collections_spec.rb
|
2409
|
+
- spec/unit/node/vivid_mash_spec.rb
|
3141
2410
|
- spec/unit/node_map_spec.rb
|
3142
2411
|
- spec/unit/node_spec.rb
|
3143
2412
|
- spec/unit/org_spec.rb
|