├── .delivery └── project.toml ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── branchcleanup.yml ├── .gitignore ├── .rubocop.yml ├── .travis.yml ├── .vscode └── extensions.json ├── Berksfile ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── TESTING.md ├── TROUBLESHOOTING.md ├── attributes └── default.rb ├── chefignore ├── docs └── supported_configuration.md ├── examples ├── automate_win │ ├── .kitchen.yml │ ├── Berksfile │ ├── README.md │ ├── metadata.rb │ ├── recipes │ │ ├── chef_client_config.rb │ │ └── default.rb │ ├── spec │ │ ├── spec_helper.rb │ │ └── unit │ │ │ └── recipes │ │ │ ├── chef_client_config_spec.rb │ │ │ └── default_spec.rb │ └── templates │ │ └── default │ │ └── automate_ingest.rb.erb ├── chef-server │ ├── README.md │ └── Vagrantfile └── wrapper_audit │ ├── .kitchen.yml │ ├── Berksfile │ ├── README.md │ ├── metadata.rb │ ├── recipes │ └── default.rb │ └── spec │ ├── spec_helper.rb │ └── unit │ └── recipes │ └── default_spec.rb ├── files └── default │ ├── handler │ └── audit_report.rb │ └── vendor │ ├── chef-automate │ └── fetcher.rb │ └── chef-server │ └── fetcher.rb ├── kitchen.dokken.yml ├── kitchen.yml ├── libraries ├── helper.rb └── reporters │ ├── audit-enforcer.rb │ ├── automate.rb │ ├── cs_automate.rb │ └── json_file.rb ├── metadata.rb ├── recipes ├── default.rb └── inspec.rb ├── resources └── inspec_gem.rb ├── spec ├── chef-client.pem ├── data │ ├── mock.rb │ └── mock_profile.rb ├── spec_helper.rb └── unit │ ├── libraries │ ├── audit_enforcer_spec.rb │ ├── automate_spec.rb │ ├── cs_automate_spec.rb │ ├── helpers_spec.rb │ └── json_file_spec.rb │ ├── recipes │ └── default_spec.rb │ └── report │ ├── audit_report_spec.rb │ └── fetcher_spec.rb ├── tasks └── changelog.rake └── test ├── cookbooks └── test_helper │ ├── .gitignore │ ├── Berksfile │ ├── files │ └── waivers-fixture │ │ ├── controls │ │ └── waiver-check.rb │ │ ├── inspec.yml │ │ └── waivers │ │ └── waivers.yaml │ ├── metadata.rb │ └── recipes │ ├── create_file.rb │ ├── force_inspec_core.rb │ ├── install_inspec.rb │ ├── setup.rb │ └── setup_waiver_fixture.rb ├── integration ├── chef-node-disabled │ └── default.rb ├── chef-node-enabled │ └── default.rb ├── chef15-compatible-inspec │ └── default.rb ├── default │ └── default.rb ├── gem-install-core-version2 │ └── default.rb ├── gem-install-core-version3 │ └── default.rb ├── gem-install-core-version4 │ └── default.rb ├── inspec-attributes │ └── default.rb ├── skip-inspec-gem-install │ └── default.rb └── waivers │ └── default.rb └── kitchen-automate ├── .kitchen.yml ├── Berksfile ├── README.md ├── libraries └── helper.rb ├── metadata.rb ├── recipes ├── bootstrap_localhost.rb ├── configure_services.rb ├── converge_localhost.rb ├── default.rb ├── harakiri.rb └── upload_profile.rb ├── templates └── default │ └── knife.rb.erb └── test └── integration └── default └── chef-server-visibility_spec.rb /.delivery/project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/.delivery/project.toml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/branchcleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/.github/workflows/branchcleanup.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/Berksfile -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/Rakefile -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/TESTING.md -------------------------------------------------------------------------------- /TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/attributes/default.rb -------------------------------------------------------------------------------- /chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/chefignore -------------------------------------------------------------------------------- /docs/supported_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/docs/supported_configuration.md -------------------------------------------------------------------------------- /examples/automate_win/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/examples/automate_win/.kitchen.yml -------------------------------------------------------------------------------- /examples/automate_win/Berksfile: -------------------------------------------------------------------------------- 1 | source 'https://supermarket.chef.io' 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /examples/automate_win/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/examples/automate_win/README.md -------------------------------------------------------------------------------- /examples/automate_win/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/examples/automate_win/metadata.rb -------------------------------------------------------------------------------- /examples/automate_win/recipes/chef_client_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/examples/automate_win/recipes/chef_client_config.rb -------------------------------------------------------------------------------- /examples/automate_win/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/examples/automate_win/recipes/default.rb -------------------------------------------------------------------------------- /examples/automate_win/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/examples/automate_win/spec/spec_helper.rb -------------------------------------------------------------------------------- /examples/automate_win/spec/unit/recipes/chef_client_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/examples/automate_win/spec/unit/recipes/chef_client_config_spec.rb -------------------------------------------------------------------------------- /examples/automate_win/spec/unit/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/examples/automate_win/spec/unit/recipes/default_spec.rb -------------------------------------------------------------------------------- /examples/automate_win/templates/default/automate_ingest.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/examples/automate_win/templates/default/automate_ingest.rb.erb -------------------------------------------------------------------------------- /examples/chef-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/examples/chef-server/README.md -------------------------------------------------------------------------------- /examples/chef-server/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/examples/chef-server/Vagrantfile -------------------------------------------------------------------------------- /examples/wrapper_audit/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/examples/wrapper_audit/.kitchen.yml -------------------------------------------------------------------------------- /examples/wrapper_audit/Berksfile: -------------------------------------------------------------------------------- 1 | source 'https://supermarket.chef.io' 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /examples/wrapper_audit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/examples/wrapper_audit/README.md -------------------------------------------------------------------------------- /examples/wrapper_audit/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/examples/wrapper_audit/metadata.rb -------------------------------------------------------------------------------- /examples/wrapper_audit/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/examples/wrapper_audit/recipes/default.rb -------------------------------------------------------------------------------- /examples/wrapper_audit/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/examples/wrapper_audit/spec/spec_helper.rb -------------------------------------------------------------------------------- /examples/wrapper_audit/spec/unit/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/examples/wrapper_audit/spec/unit/recipes/default_spec.rb -------------------------------------------------------------------------------- /files/default/handler/audit_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/files/default/handler/audit_report.rb -------------------------------------------------------------------------------- /files/default/vendor/chef-automate/fetcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/files/default/vendor/chef-automate/fetcher.rb -------------------------------------------------------------------------------- /files/default/vendor/chef-server/fetcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/files/default/vendor/chef-server/fetcher.rb -------------------------------------------------------------------------------- /kitchen.dokken.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/kitchen.dokken.yml -------------------------------------------------------------------------------- /kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/kitchen.yml -------------------------------------------------------------------------------- /libraries/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/libraries/helper.rb -------------------------------------------------------------------------------- /libraries/reporters/audit-enforcer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/libraries/reporters/audit-enforcer.rb -------------------------------------------------------------------------------- /libraries/reporters/automate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/libraries/reporters/automate.rb -------------------------------------------------------------------------------- /libraries/reporters/cs_automate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/libraries/reporters/cs_automate.rb -------------------------------------------------------------------------------- /libraries/reporters/json_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/libraries/reporters/json_file.rb -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/metadata.rb -------------------------------------------------------------------------------- /recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/recipes/default.rb -------------------------------------------------------------------------------- /recipes/inspec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/recipes/inspec.rb -------------------------------------------------------------------------------- /resources/inspec_gem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/resources/inspec_gem.rb -------------------------------------------------------------------------------- /spec/chef-client.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/spec/chef-client.pem -------------------------------------------------------------------------------- /spec/data/mock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/spec/data/mock.rb -------------------------------------------------------------------------------- /spec/data/mock_profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/spec/data/mock_profile.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/unit/libraries/audit_enforcer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/spec/unit/libraries/audit_enforcer_spec.rb -------------------------------------------------------------------------------- /spec/unit/libraries/automate_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/spec/unit/libraries/automate_spec.rb -------------------------------------------------------------------------------- /spec/unit/libraries/cs_automate_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/spec/unit/libraries/cs_automate_spec.rb -------------------------------------------------------------------------------- /spec/unit/libraries/helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/spec/unit/libraries/helpers_spec.rb -------------------------------------------------------------------------------- /spec/unit/libraries/json_file_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/spec/unit/libraries/json_file_spec.rb -------------------------------------------------------------------------------- /spec/unit/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/spec/unit/recipes/default_spec.rb -------------------------------------------------------------------------------- /spec/unit/report/audit_report_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/spec/unit/report/audit_report_spec.rb -------------------------------------------------------------------------------- /spec/unit/report/fetcher_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/spec/unit/report/fetcher_spec.rb -------------------------------------------------------------------------------- /tasks/changelog.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/tasks/changelog.rake -------------------------------------------------------------------------------- /test/cookbooks/test_helper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/cookbooks/test_helper/.gitignore -------------------------------------------------------------------------------- /test/cookbooks/test_helper/Berksfile: -------------------------------------------------------------------------------- 1 | source 'https://supermarket.chef.io' 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /test/cookbooks/test_helper/files/waivers-fixture/controls/waiver-check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/cookbooks/test_helper/files/waivers-fixture/controls/waiver-check.rb -------------------------------------------------------------------------------- /test/cookbooks/test_helper/files/waivers-fixture/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/cookbooks/test_helper/files/waivers-fixture/inspec.yml -------------------------------------------------------------------------------- /test/cookbooks/test_helper/files/waivers-fixture/waivers/waivers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/cookbooks/test_helper/files/waivers-fixture/waivers/waivers.yaml -------------------------------------------------------------------------------- /test/cookbooks/test_helper/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/cookbooks/test_helper/metadata.rb -------------------------------------------------------------------------------- /test/cookbooks/test_helper/recipes/create_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/cookbooks/test_helper/recipes/create_file.rb -------------------------------------------------------------------------------- /test/cookbooks/test_helper/recipes/force_inspec_core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/cookbooks/test_helper/recipes/force_inspec_core.rb -------------------------------------------------------------------------------- /test/cookbooks/test_helper/recipes/install_inspec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/cookbooks/test_helper/recipes/install_inspec.rb -------------------------------------------------------------------------------- /test/cookbooks/test_helper/recipes/setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/cookbooks/test_helper/recipes/setup.rb -------------------------------------------------------------------------------- /test/cookbooks/test_helper/recipes/setup_waiver_fixture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/cookbooks/test_helper/recipes/setup_waiver_fixture.rb -------------------------------------------------------------------------------- /test/integration/chef-node-disabled/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/integration/chef-node-disabled/default.rb -------------------------------------------------------------------------------- /test/integration/chef-node-enabled/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/integration/chef-node-enabled/default.rb -------------------------------------------------------------------------------- /test/integration/chef15-compatible-inspec/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/integration/chef15-compatible-inspec/default.rb -------------------------------------------------------------------------------- /test/integration/default/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/integration/default/default.rb -------------------------------------------------------------------------------- /test/integration/gem-install-core-version2/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/integration/gem-install-core-version2/default.rb -------------------------------------------------------------------------------- /test/integration/gem-install-core-version3/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/integration/gem-install-core-version3/default.rb -------------------------------------------------------------------------------- /test/integration/gem-install-core-version4/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/integration/gem-install-core-version4/default.rb -------------------------------------------------------------------------------- /test/integration/inspec-attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/integration/inspec-attributes/default.rb -------------------------------------------------------------------------------- /test/integration/skip-inspec-gem-install/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/integration/skip-inspec-gem-install/default.rb -------------------------------------------------------------------------------- /test/integration/waivers/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/integration/waivers/default.rb -------------------------------------------------------------------------------- /test/kitchen-automate/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/kitchen-automate/.kitchen.yml -------------------------------------------------------------------------------- /test/kitchen-automate/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/kitchen-automate/Berksfile -------------------------------------------------------------------------------- /test/kitchen-automate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/kitchen-automate/README.md -------------------------------------------------------------------------------- /test/kitchen-automate/libraries/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/kitchen-automate/libraries/helper.rb -------------------------------------------------------------------------------- /test/kitchen-automate/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/kitchen-automate/metadata.rb -------------------------------------------------------------------------------- /test/kitchen-automate/recipes/bootstrap_localhost.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/kitchen-automate/recipes/bootstrap_localhost.rb -------------------------------------------------------------------------------- /test/kitchen-automate/recipes/configure_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/kitchen-automate/recipes/configure_services.rb -------------------------------------------------------------------------------- /test/kitchen-automate/recipes/converge_localhost.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/kitchen-automate/recipes/converge_localhost.rb -------------------------------------------------------------------------------- /test/kitchen-automate/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/kitchen-automate/recipes/default.rb -------------------------------------------------------------------------------- /test/kitchen-automate/recipes/harakiri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/kitchen-automate/recipes/harakiri.rb -------------------------------------------------------------------------------- /test/kitchen-automate/recipes/upload_profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/kitchen-automate/recipes/upload_profile.rb -------------------------------------------------------------------------------- /test/kitchen-automate/templates/default/knife.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/kitchen-automate/templates/default/knife.rb.erb -------------------------------------------------------------------------------- /test/kitchen-automate/test/integration/default/chef-server-visibility_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/audit/HEAD/test/kitchen-automate/test/integration/default/chef-server-visibility_spec.rb --------------------------------------------------------------------------------