├── README.md └── cookbooks ├── acme_win_web ├── .delivery │ ├── build_cookbook │ │ ├── .kitchen.yml │ │ ├── Berksfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── chefignore │ │ ├── data_bags │ │ │ └── keys │ │ │ │ └── delivery_builder_keys.json │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── default.rb │ │ │ ├── deploy.rb │ │ │ ├── functional.rb │ │ │ ├── lint.rb │ │ │ ├── provision.rb │ │ │ ├── publish.rb │ │ │ ├── quality.rb │ │ │ ├── security.rb │ │ │ ├── smoke.rb │ │ │ ├── syntax.rb │ │ │ └── unit.rb │ │ ├── secrets │ │ │ └── fakey-mcfakerton │ │ └── test │ │ │ └── fixtures │ │ │ └── cookbooks │ │ │ └── test │ │ │ ├── metadata.rb │ │ │ └── recipes │ │ │ └── default.rb │ ├── config.json │ └── project.toml ├── .gitignore ├── .kitchen.yml ├── Berksfile ├── README.md ├── attributes │ └── default.rb ├── chefignore ├── libraries │ └── WebsiteBindings.rb ├── metadata.rb ├── recipes │ └── default.rb ├── spec │ ├── spec_helper.rb │ └── unit │ │ └── recipes │ │ └── default_spec.rb └── test │ └── integration │ └── acme_win_web.default │ └── pester │ └── when_running_the_default_recipe.Tests.ps1 ├── chef_handler ├── CHANGELOG.md ├── CONTRIBUTING.md ├── MAINTAINERS.md ├── README.md ├── attributes │ └── default.rb ├── files │ ├── .DS_Store │ └── default │ │ └── handlers │ │ └── README ├── libraries │ ├── helpers.rb │ └── matchers.rb ├── metadata.json ├── providers │ └── default.rb ├── recipes │ ├── default.rb │ └── json_file.rb └── resources │ └── default.rb ├── ms_dotnet ├── .gitignore ├── .rubocop.yml ├── .travis.yml ├── Berksfile ├── CHANGELOG.md ├── Gemfile ├── README.md ├── Rakefile ├── attributes │ └── default.rb ├── chefignore ├── libraries │ ├── default.rb │ ├── matchers.rb │ ├── package_helper.rb │ ├── v2_helper.rb │ ├── v3_helper.rb │ ├── v4_helper.rb │ ├── version_helper.rb │ └── windows_version_helper.rb ├── metadata.json ├── metadata.rb ├── providers │ └── framework.rb ├── recipes │ ├── default.rb │ ├── ms_dotnet2.rb │ ├── ms_dotnet3.rb │ ├── ms_dotnet4.rb │ └── regiis.rb └── resources │ └── framework.rb ├── ohai ├── .foodcritic ├── CHANGELOG.md ├── CONTRIBUTING.md ├── MAINTAINERS.md ├── README.md ├── libraries │ └── matchers.rb ├── metadata.json ├── recipes │ └── default.rb └── resources │ ├── hint.rb │ └── plugin.rb ├── powershell ├── CHANGELOG.md ├── CONTRIBUTING.md ├── MAINTAINERS.md ├── README.md ├── attributes │ ├── config_lcm.rb │ ├── default.rb │ ├── powershell3.rb │ ├── powershell4.rb │ └── powershell5.rb ├── libraries │ ├── powershell_module_provider.rb │ ├── powershell_module_resource.rb │ └── powershell_version.rb ├── metadata.json └── recipes │ ├── default.rb │ ├── disable_lcm.rb │ ├── dsc.rb │ ├── enable_dsc_script.rb │ ├── enable_lcm.rb │ ├── powershell2.rb │ ├── powershell3.rb │ ├── powershell4.rb │ ├── powershell5.rb │ ├── powershell_module.rb │ ├── windows_reboot.rb │ └── winrm.rb └── windows ├── .foodcritic ├── CHANGELOG.md ├── CONTRIBUTING.md ├── MAINTAINERS.md ├── README.md ├── attributes └── default.rb ├── files └── default │ └── dism_features.rb ├── libraries ├── feature_base.rb ├── matchers.rb ├── powershell_helper.rb ├── powershell_out.rb ├── registry_helper.rb ├── version.rb ├── version_helper.rb ├── windows_helper.rb ├── windows_package.rb ├── windows_privileged.rb └── wmi_helper.rb ├── metadata.json ├── providers ├── auto_run.rb ├── certificate.rb ├── certificate_binding.rb ├── feature_dism.rb ├── feature_powershell.rb ├── feature_servermanagercmd.rb ├── font.rb ├── http_acl.rb ├── pagefile.rb ├── path.rb ├── printer.rb ├── printer_port.rb ├── shortcut.rb ├── task.rb └── zipfile.rb ├── recipes └── default.rb └── resources ├── auto_run.rb ├── certificate.rb ├── certificate_binding.rb ├── feature.rb ├── font.rb ├── http_acl.rb ├── pagefile.rb ├── path.rb ├── printer.rb ├── printer_port.rb ├── shortcut.rb ├── task.rb └── zipfile.rb /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/README.md -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/build_cookbook/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/.delivery/build_cookbook/.kitchen.yml -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/build_cookbook/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/.delivery/build_cookbook/Berksfile -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/build_cookbook/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/.delivery/build_cookbook/LICENSE -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/build_cookbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/.delivery/build_cookbook/README.md -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/build_cookbook/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/.delivery/build_cookbook/chefignore -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/build_cookbook/data_bags/keys/delivery_builder_keys.json: -------------------------------------------------------------------------------- 1 | {"id": "delivery_builder_keys"} -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/build_cookbook/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/.delivery/build_cookbook/metadata.rb -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/build_cookbook/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/.delivery/build_cookbook/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/build_cookbook/recipes/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/.delivery/build_cookbook/recipes/deploy.rb -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/build_cookbook/recipes/functional.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/.delivery/build_cookbook/recipes/functional.rb -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/build_cookbook/recipes/lint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/.delivery/build_cookbook/recipes/lint.rb -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/build_cookbook/recipes/provision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/.delivery/build_cookbook/recipes/provision.rb -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/build_cookbook/recipes/publish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/.delivery/build_cookbook/recipes/publish.rb -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/build_cookbook/recipes/quality.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/.delivery/build_cookbook/recipes/quality.rb -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/build_cookbook/recipes/security.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/.delivery/build_cookbook/recipes/security.rb -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/build_cookbook/recipes/smoke.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/.delivery/build_cookbook/recipes/smoke.rb -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/build_cookbook/recipes/syntax.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/.delivery/build_cookbook/recipes/syntax.rb -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/build_cookbook/recipes/unit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/.delivery/build_cookbook/recipes/unit.rb -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/build_cookbook/secrets/fakey-mcfakerton: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/build_cookbook/test/fixtures/cookbooks/test/metadata.rb: -------------------------------------------------------------------------------- 1 | name 'test' 2 | version '0.1.0' -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/build_cookbook/test/fixtures/cookbooks/test/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/.delivery/build_cookbook/test/fixtures/cookbooks/test/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/.delivery/config.json -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.delivery/project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/.delivery/project.toml -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/.gitignore -------------------------------------------------------------------------------- /cookbooks/acme_win_web/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/.kitchen.yml -------------------------------------------------------------------------------- /cookbooks/acme_win_web/Berksfile: -------------------------------------------------------------------------------- 1 | source 'https://supermarket.chef.io' 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /cookbooks/acme_win_web/README.md: -------------------------------------------------------------------------------- 1 | # acme_win_web 2 | 3 | TODO: Enter the cookbook description here. 4 | 5 | -------------------------------------------------------------------------------- /cookbooks/acme_win_web/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/acme_win_web/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/chefignore -------------------------------------------------------------------------------- /cookbooks/acme_win_web/libraries/WebsiteBindings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/libraries/WebsiteBindings.rb -------------------------------------------------------------------------------- /cookbooks/acme_win_web/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/metadata.rb -------------------------------------------------------------------------------- /cookbooks/acme_win_web/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/acme_win_web/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/spec/spec_helper.rb -------------------------------------------------------------------------------- /cookbooks/acme_win_web/spec/unit/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/spec/unit/recipes/default_spec.rb -------------------------------------------------------------------------------- /cookbooks/acme_win_web/test/integration/acme_win_web.default/pester/when_running_the_default_recipe.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/acme_win_web/test/integration/acme_win_web.default/pester/when_running_the_default_recipe.Tests.ps1 -------------------------------------------------------------------------------- /cookbooks/chef_handler/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/chef_handler/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/chef_handler/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/chef_handler/CONTRIBUTING.md -------------------------------------------------------------------------------- /cookbooks/chef_handler/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/chef_handler/MAINTAINERS.md -------------------------------------------------------------------------------- /cookbooks/chef_handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/chef_handler/README.md -------------------------------------------------------------------------------- /cookbooks/chef_handler/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/chef_handler/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/chef_handler/files/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/chef_handler/files/.DS_Store -------------------------------------------------------------------------------- /cookbooks/chef_handler/files/default/handlers/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/chef_handler/files/default/handlers/README -------------------------------------------------------------------------------- /cookbooks/chef_handler/libraries/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/chef_handler/libraries/helpers.rb -------------------------------------------------------------------------------- /cookbooks/chef_handler/libraries/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/chef_handler/libraries/matchers.rb -------------------------------------------------------------------------------- /cookbooks/chef_handler/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/chef_handler/metadata.json -------------------------------------------------------------------------------- /cookbooks/chef_handler/providers/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/chef_handler/providers/default.rb -------------------------------------------------------------------------------- /cookbooks/chef_handler/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/chef_handler/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/chef_handler/recipes/json_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/chef_handler/recipes/json_file.rb -------------------------------------------------------------------------------- /cookbooks/chef_handler/resources/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/chef_handler/resources/default.rb -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/.gitignore -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/.rubocop.yml -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/.travis.yml -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/Berksfile -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/Gemfile -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/README.md -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/Rakefile -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/chefignore -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/libraries/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/libraries/default.rb -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/libraries/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/libraries/matchers.rb -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/libraries/package_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/libraries/package_helper.rb -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/libraries/v2_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/libraries/v2_helper.rb -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/libraries/v3_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/libraries/v3_helper.rb -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/libraries/v4_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/libraries/v4_helper.rb -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/libraries/version_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/libraries/version_helper.rb -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/libraries/windows_version_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/libraries/windows_version_helper.rb -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/metadata.json -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/metadata.rb -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/providers/framework.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/providers/framework.rb -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/recipes/ms_dotnet2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/recipes/ms_dotnet2.rb -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/recipes/ms_dotnet3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/recipes/ms_dotnet3.rb -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/recipes/ms_dotnet4.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/recipes/ms_dotnet4.rb -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/recipes/regiis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/recipes/regiis.rb -------------------------------------------------------------------------------- /cookbooks/ms_dotnet/resources/framework.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ms_dotnet/resources/framework.rb -------------------------------------------------------------------------------- /cookbooks/ohai/.foodcritic: -------------------------------------------------------------------------------- 1 | ~FC016 2 | ~FC009 3 | -------------------------------------------------------------------------------- /cookbooks/ohai/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ohai/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/ohai/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ohai/CONTRIBUTING.md -------------------------------------------------------------------------------- /cookbooks/ohai/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ohai/MAINTAINERS.md -------------------------------------------------------------------------------- /cookbooks/ohai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ohai/README.md -------------------------------------------------------------------------------- /cookbooks/ohai/libraries/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ohai/libraries/matchers.rb -------------------------------------------------------------------------------- /cookbooks/ohai/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ohai/metadata.json -------------------------------------------------------------------------------- /cookbooks/ohai/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ohai/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/ohai/resources/hint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ohai/resources/hint.rb -------------------------------------------------------------------------------- /cookbooks/ohai/resources/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/ohai/resources/plugin.rb -------------------------------------------------------------------------------- /cookbooks/powershell/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/powershell/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/CONTRIBUTING.md -------------------------------------------------------------------------------- /cookbooks/powershell/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/MAINTAINERS.md -------------------------------------------------------------------------------- /cookbooks/powershell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/README.md -------------------------------------------------------------------------------- /cookbooks/powershell/attributes/config_lcm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/attributes/config_lcm.rb -------------------------------------------------------------------------------- /cookbooks/powershell/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/powershell/attributes/powershell3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/attributes/powershell3.rb -------------------------------------------------------------------------------- /cookbooks/powershell/attributes/powershell4.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/attributes/powershell4.rb -------------------------------------------------------------------------------- /cookbooks/powershell/attributes/powershell5.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/attributes/powershell5.rb -------------------------------------------------------------------------------- /cookbooks/powershell/libraries/powershell_module_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/libraries/powershell_module_provider.rb -------------------------------------------------------------------------------- /cookbooks/powershell/libraries/powershell_module_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/libraries/powershell_module_resource.rb -------------------------------------------------------------------------------- /cookbooks/powershell/libraries/powershell_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/libraries/powershell_version.rb -------------------------------------------------------------------------------- /cookbooks/powershell/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/metadata.json -------------------------------------------------------------------------------- /cookbooks/powershell/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/powershell/recipes/disable_lcm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/recipes/disable_lcm.rb -------------------------------------------------------------------------------- /cookbooks/powershell/recipes/dsc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/recipes/dsc.rb -------------------------------------------------------------------------------- /cookbooks/powershell/recipes/enable_dsc_script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/recipes/enable_dsc_script.rb -------------------------------------------------------------------------------- /cookbooks/powershell/recipes/enable_lcm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/recipes/enable_lcm.rb -------------------------------------------------------------------------------- /cookbooks/powershell/recipes/powershell2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/recipes/powershell2.rb -------------------------------------------------------------------------------- /cookbooks/powershell/recipes/powershell3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/recipes/powershell3.rb -------------------------------------------------------------------------------- /cookbooks/powershell/recipes/powershell4.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/recipes/powershell4.rb -------------------------------------------------------------------------------- /cookbooks/powershell/recipes/powershell5.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/recipes/powershell5.rb -------------------------------------------------------------------------------- /cookbooks/powershell/recipes/powershell_module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/recipes/powershell_module.rb -------------------------------------------------------------------------------- /cookbooks/powershell/recipes/windows_reboot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/recipes/windows_reboot.rb -------------------------------------------------------------------------------- /cookbooks/powershell/recipes/winrm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/powershell/recipes/winrm.rb -------------------------------------------------------------------------------- /cookbooks/windows/.foodcritic: -------------------------------------------------------------------------------- 1 | ~FC001 2 | -------------------------------------------------------------------------------- /cookbooks/windows/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/windows/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/CONTRIBUTING.md -------------------------------------------------------------------------------- /cookbooks/windows/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/MAINTAINERS.md -------------------------------------------------------------------------------- /cookbooks/windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/README.md -------------------------------------------------------------------------------- /cookbooks/windows/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/windows/files/default/dism_features.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/files/default/dism_features.rb -------------------------------------------------------------------------------- /cookbooks/windows/libraries/feature_base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/libraries/feature_base.rb -------------------------------------------------------------------------------- /cookbooks/windows/libraries/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/libraries/matchers.rb -------------------------------------------------------------------------------- /cookbooks/windows/libraries/powershell_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/libraries/powershell_helper.rb -------------------------------------------------------------------------------- /cookbooks/windows/libraries/powershell_out.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/libraries/powershell_out.rb -------------------------------------------------------------------------------- /cookbooks/windows/libraries/registry_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/libraries/registry_helper.rb -------------------------------------------------------------------------------- /cookbooks/windows/libraries/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/libraries/version.rb -------------------------------------------------------------------------------- /cookbooks/windows/libraries/version_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/libraries/version_helper.rb -------------------------------------------------------------------------------- /cookbooks/windows/libraries/windows_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/libraries/windows_helper.rb -------------------------------------------------------------------------------- /cookbooks/windows/libraries/windows_package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/libraries/windows_package.rb -------------------------------------------------------------------------------- /cookbooks/windows/libraries/windows_privileged.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/libraries/windows_privileged.rb -------------------------------------------------------------------------------- /cookbooks/windows/libraries/wmi_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/libraries/wmi_helper.rb -------------------------------------------------------------------------------- /cookbooks/windows/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/metadata.json -------------------------------------------------------------------------------- /cookbooks/windows/providers/auto_run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/providers/auto_run.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/certificate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/providers/certificate.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/certificate_binding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/providers/certificate_binding.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/feature_dism.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/providers/feature_dism.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/feature_powershell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/providers/feature_powershell.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/feature_servermanagercmd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/providers/feature_servermanagercmd.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/font.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/providers/font.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/http_acl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/providers/http_acl.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/pagefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/providers/pagefile.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/providers/path.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/printer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/providers/printer.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/printer_port.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/providers/printer_port.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/shortcut.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/providers/shortcut.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/providers/task.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/zipfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/providers/zipfile.rb -------------------------------------------------------------------------------- /cookbooks/windows/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/auto_run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/resources/auto_run.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/certificate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/resources/certificate.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/certificate_binding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/resources/certificate_binding.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/feature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/resources/feature.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/font.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/resources/font.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/http_acl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/resources/http_acl.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/pagefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/resources/pagefile.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/resources/path.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/printer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/resources/printer.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/printer_port.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/resources/printer_port.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/shortcut.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/resources/shortcut.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/resources/task.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/zipfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rschiefer/TDDwithChefDSCPester/HEAD/cookbooks/windows/resources/zipfile.rb --------------------------------------------------------------------------------