├── .fixtures.yml ├── .gitignore ├── .gitlab-ci.yml ├── .pdkignore ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── .yardopts ├── Gemfile ├── README.md ├── Rakefile ├── appveyor.yml ├── examples └── init.pp ├── files ├── auditDC.csv └── auditMS.csv ├── hiera.yaml ├── manifests ├── configure.pp └── init.pp ├── metadata.json └── spec ├── acceptance ├── harden_spec.rb └── nodesets │ └── windows2008r2.yml ├── classes └── init_spec.rb ├── default_facts.yml ├── spec_helper.rb └── spec_helper_acceptance.rb /.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/.fixtures.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.pdkignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/.pdkignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/.yardopts -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/Rakefile -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/appveyor.yml -------------------------------------------------------------------------------- /examples/init.pp: -------------------------------------------------------------------------------- 1 | include ::harden_windows_server 2 | -------------------------------------------------------------------------------- /files/auditDC.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/files/auditDC.csv -------------------------------------------------------------------------------- /files/auditMS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/files/auditMS.csv -------------------------------------------------------------------------------- /hiera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/hiera.yaml -------------------------------------------------------------------------------- /manifests/configure.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/manifests/configure.pp -------------------------------------------------------------------------------- /manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/manifests/init.pp -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/metadata.json -------------------------------------------------------------------------------- /spec/acceptance/harden_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/spec/acceptance/harden_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/nodesets/windows2008r2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/spec/acceptance/nodesets/windows2008r2.yml -------------------------------------------------------------------------------- /spec/classes/init_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/spec/classes/init_spec.rb -------------------------------------------------------------------------------- /spec/default_facts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/spec/default_facts.yml -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper_acceptance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostructure/harden_windows_server/HEAD/spec/spec_helper_acceptance.rb --------------------------------------------------------------------------------