├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── labeler.yml ├── release.yml └── workflows │ ├── ci.yml │ ├── labeler.yml │ ├── prepare_release.yml │ └── release.yml ├── .gitignore ├── .msync.yml ├── .overcommit.yml ├── .pmtignore ├── .puppet-lint.rc ├── .rubocop.yml ├── .rubocop_todo.yml ├── .sync.yml ├── CHANGELOG.md ├── Gemfile ├── HISTORY.md ├── LICENSE ├── README.md ├── REFERENCE.md ├── Rakefile ├── lib └── puppet │ ├── provider │ └── windowsfeature │ │ └── default.rb │ └── type │ └── windowsfeature.rb ├── metadata.json └── spec ├── acceptance ├── lots_of_features_spec.rb └── windowsfeature_spec.rb ├── fixtures ├── windows-features.csv └── windows-features.xml ├── spec_helper.rb ├── spec_helper_acceptance.rb ├── spec_helper_methods.rb └── unit └── puppet ├── provider └── windowsfeature │ └── default_spec.rb └── type └── windowsfeature └── windowsfeature_spec.rb /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/prepare_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/.github/workflows/prepare_release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/.gitignore -------------------------------------------------------------------------------- /.msync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/.msync.yml -------------------------------------------------------------------------------- /.overcommit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/.overcommit.yml -------------------------------------------------------------------------------- /.pmtignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/.pmtignore -------------------------------------------------------------------------------- /.puppet-lint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/.puppet-lint.rc -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/.sync.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/Gemfile -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/README.md -------------------------------------------------------------------------------- /REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/REFERENCE.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/puppet/provider/windowsfeature/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/lib/puppet/provider/windowsfeature/default.rb -------------------------------------------------------------------------------- /lib/puppet/type/windowsfeature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/lib/puppet/type/windowsfeature.rb -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/metadata.json -------------------------------------------------------------------------------- /spec/acceptance/lots_of_features_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/spec/acceptance/lots_of_features_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/windowsfeature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/spec/acceptance/windowsfeature_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/windows-features.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/spec/fixtures/windows-features.csv -------------------------------------------------------------------------------- /spec/fixtures/windows-features.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/spec/fixtures/windows-features.xml -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper_acceptance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/spec/spec_helper_acceptance.rb -------------------------------------------------------------------------------- /spec/spec_helper_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/spec/spec_helper_methods.rb -------------------------------------------------------------------------------- /spec/unit/puppet/provider/windowsfeature/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/spec/unit/puppet/provider/windowsfeature/default_spec.rb -------------------------------------------------------------------------------- /spec/unit/puppet/type/windowsfeature/windowsfeature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpupuli/puppet-windowsfeature/HEAD/spec/unit/puppet/type/windowsfeature/windowsfeature_spec.rb --------------------------------------------------------------------------------