├── .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.appveyor.yml ├── .kitchen.yml ├── Berksfile ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE.md ├── README.md ├── appveyor.yml ├── attributes └── default.rb ├── chefignore ├── metadata.rb ├── recipes ├── default.rb └── template.rb ├── resources └── security_policy.rb ├── spec ├── spec_helper.rb └── unit │ └── recipes │ └── default_spec.rb ├── templates └── default │ └── policy.inf.erb └── test └── integration └── default └── tests.rb /.delivery/build_cookbook/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.delivery/build_cookbook/.kitchen.yml -------------------------------------------------------------------------------- /.delivery/build_cookbook/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.delivery/build_cookbook/Berksfile -------------------------------------------------------------------------------- /.delivery/build_cookbook/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.delivery/build_cookbook/LICENSE -------------------------------------------------------------------------------- /.delivery/build_cookbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.delivery/build_cookbook/README.md -------------------------------------------------------------------------------- /.delivery/build_cookbook/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.delivery/build_cookbook/chefignore -------------------------------------------------------------------------------- /.delivery/build_cookbook/data_bags/keys/delivery_builder_keys.json: -------------------------------------------------------------------------------- 1 | {"id": "delivery_builder_keys"} -------------------------------------------------------------------------------- /.delivery/build_cookbook/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.delivery/build_cookbook/metadata.rb -------------------------------------------------------------------------------- /.delivery/build_cookbook/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.delivery/build_cookbook/recipes/default.rb -------------------------------------------------------------------------------- /.delivery/build_cookbook/recipes/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.delivery/build_cookbook/recipes/deploy.rb -------------------------------------------------------------------------------- /.delivery/build_cookbook/recipes/functional.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.delivery/build_cookbook/recipes/functional.rb -------------------------------------------------------------------------------- /.delivery/build_cookbook/recipes/lint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.delivery/build_cookbook/recipes/lint.rb -------------------------------------------------------------------------------- /.delivery/build_cookbook/recipes/provision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.delivery/build_cookbook/recipes/provision.rb -------------------------------------------------------------------------------- /.delivery/build_cookbook/recipes/publish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.delivery/build_cookbook/recipes/publish.rb -------------------------------------------------------------------------------- /.delivery/build_cookbook/recipes/quality.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.delivery/build_cookbook/recipes/quality.rb -------------------------------------------------------------------------------- /.delivery/build_cookbook/recipes/security.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.delivery/build_cookbook/recipes/security.rb -------------------------------------------------------------------------------- /.delivery/build_cookbook/recipes/smoke.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.delivery/build_cookbook/recipes/smoke.rb -------------------------------------------------------------------------------- /.delivery/build_cookbook/recipes/syntax.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.delivery/build_cookbook/recipes/syntax.rb -------------------------------------------------------------------------------- /.delivery/build_cookbook/recipes/unit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.delivery/build_cookbook/recipes/unit.rb -------------------------------------------------------------------------------- /.delivery/build_cookbook/secrets/fakey-mcfakerton: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.delivery/build_cookbook/test/fixtures/cookbooks/test/metadata.rb: -------------------------------------------------------------------------------- 1 | name 'test' 2 | version '0.1.0' -------------------------------------------------------------------------------- /.delivery/build_cookbook/test/fixtures/cookbooks/test/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.delivery/build_cookbook/test/fixtures/cookbooks/test/recipes/default.rb -------------------------------------------------------------------------------- /.delivery/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.delivery/config.json -------------------------------------------------------------------------------- /.delivery/project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.delivery/project.toml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.gitignore -------------------------------------------------------------------------------- /.kitchen.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.kitchen.appveyor.yml -------------------------------------------------------------------------------- /.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/.kitchen.yml -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- 1 | source 'https://supermarket.chef.io' 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/appveyor.yml -------------------------------------------------------------------------------- /attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/attributes/default.rb -------------------------------------------------------------------------------- /chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/chefignore -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/metadata.rb -------------------------------------------------------------------------------- /recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/recipes/default.rb -------------------------------------------------------------------------------- /recipes/template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/recipes/template.rb -------------------------------------------------------------------------------- /resources/security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/resources/security_policy.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/unit/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/spec/unit/recipes/default_spec.rb -------------------------------------------------------------------------------- /templates/default/policy.inf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/templates/default/policy.inf.erb -------------------------------------------------------------------------------- /test/integration/default/tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grdnrio/windows-security-policy/HEAD/test/integration/default/tests.rb --------------------------------------------------------------------------------