├── .editorconfig ├── .envrc ├── .gitattributes ├── .github ├── CODEOWNERS ├── copilot-instructions.md └── workflows │ ├── ci.yml │ ├── conventional-commits.yml │ ├── copilot-setup-steps.yml │ ├── prevent-file-change.yml │ ├── release.yml │ └── stale.yml ├── .gitignore ├── .markdownlint-cli2.yaml ├── .mdlrc ├── .overcommit.yml ├── .release-please-manifest.json ├── .rubocop.yml ├── .vscode └── extensions.json ├── .yamllint ├── Berksfile ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dangerfile ├── LICENSE ├── README.md ├── TESTING.md ├── chefignore ├── documentation ├── .gitkeep ├── selinux_boolean.md ├── selinux_fcontext.md ├── selinux_install.md ├── selinux_login.md ├── selinux_module.md ├── selinux_permissive.md ├── selinux_port.md ├── selinux_state.md └── selinux_user.md ├── kitchen.dokken.yml ├── kitchen.exec.yml ├── kitchen.global.yml ├── kitchen.yml ├── libraries ├── boolean.rb ├── install.rb └── state.rb ├── metadata.rb ├── recipes ├── disabled.rb ├── enforcing.rb └── permissive.rb ├── release-please-config.json ├── renovate.json ├── resources ├── boolean.rb ├── fcontext.rb ├── install.rb ├── login.rb ├── module.rb ├── permissive.rb ├── port.rb ├── state.rb └── user.rb ├── spec ├── spec_helper.rb └── unit │ └── resources │ ├── boolean_spec.rb │ ├── fcontext_spec.rb │ ├── install_spec.rb │ ├── login_spec.rb │ ├── module_spec.rb │ ├── permissive_spec.rb │ ├── port_spec.rb │ ├── state_spec.rb │ └── user_spec.rb ├── templates ├── debian │ └── selinux.erb └── default │ └── selinux.erb └── test ├── cookbooks └── selinux_test │ ├── README.md │ ├── files │ ├── default │ │ ├── dirtest_module │ │ │ ├── dirtest.fc │ │ │ ├── dirtest.if │ │ │ └── dirtest.te │ │ ├── kitchenConverge.te │ │ ├── kitchenVerify.te │ │ ├── moduleLoad.te │ │ └── test.te │ └── ubuntu-18.04 │ │ └── kitchenConverge.te │ ├── metadata.rb │ └── recipes │ ├── boolean.rb │ ├── debian_enforcing_prepare.rb │ ├── enforcing.rb │ ├── fcontext.rb │ ├── install.rb │ ├── login.rb │ ├── module_create.rb │ ├── module_remove.rb │ ├── permissive_resource.rb │ ├── port.rb │ └── user.rb └── integration ├── common ├── controls │ └── install_control.rb └── inspec.yml ├── disabled ├── controls │ └── disabled_control.rb └── inspec.yml ├── enforcing ├── controls │ ├── boolean_control.rb │ ├── enforcing_control.rb │ └── module_control.rb └── inspec.yml ├── fcontext ├── controls │ └── fcontext_control.rb └── inspec.yml ├── permissive ├── controls │ ├── boolean_control.rb │ ├── module_control.rb │ └── permissive_control.rb └── inspec.yml ├── permissive_resource ├── controls │ └── permissive_control.rb └── inspec.yml ├── port ├── controls │ └── port_control.rb └── inspec.yml └── user_login_mapping ├── controls └── user_login_mapping_control.rb └── inspec.yml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use chefworkstation 2 | export KITCHEN_GLOBAL_YAML=kitchen.global.yml 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @sous-chefs/maintainers 2 | -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/conventional-commits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/.github/workflows/conventional-commits.yml -------------------------------------------------------------------------------- /.github/workflows/copilot-setup-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/.github/workflows/copilot-setup-steps.yml -------------------------------------------------------------------------------- /.github/workflows/prevent-file-change.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/.github/workflows/prevent-file-change.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint-cli2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/.markdownlint-cli2.yaml -------------------------------------------------------------------------------- /.mdlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/.mdlrc -------------------------------------------------------------------------------- /.overcommit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/.overcommit.yml -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "6.2.5" 3 | } 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/.yamllint -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/Berksfile -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/Dangerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/README.md -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/TESTING.md -------------------------------------------------------------------------------- /chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/chefignore -------------------------------------------------------------------------------- /documentation/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/selinux_boolean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/documentation/selinux_boolean.md -------------------------------------------------------------------------------- /documentation/selinux_fcontext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/documentation/selinux_fcontext.md -------------------------------------------------------------------------------- /documentation/selinux_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/documentation/selinux_install.md -------------------------------------------------------------------------------- /documentation/selinux_login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/documentation/selinux_login.md -------------------------------------------------------------------------------- /documentation/selinux_module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/documentation/selinux_module.md -------------------------------------------------------------------------------- /documentation/selinux_permissive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/documentation/selinux_permissive.md -------------------------------------------------------------------------------- /documentation/selinux_port.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/documentation/selinux_port.md -------------------------------------------------------------------------------- /documentation/selinux_state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/documentation/selinux_state.md -------------------------------------------------------------------------------- /documentation/selinux_user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/documentation/selinux_user.md -------------------------------------------------------------------------------- /kitchen.dokken.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/kitchen.dokken.yml -------------------------------------------------------------------------------- /kitchen.exec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/kitchen.exec.yml -------------------------------------------------------------------------------- /kitchen.global.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/kitchen.global.yml -------------------------------------------------------------------------------- /kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/kitchen.yml -------------------------------------------------------------------------------- /libraries/boolean.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/libraries/boolean.rb -------------------------------------------------------------------------------- /libraries/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/libraries/install.rb -------------------------------------------------------------------------------- /libraries/state.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/libraries/state.rb -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/metadata.rb -------------------------------------------------------------------------------- /recipes/disabled.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/recipes/disabled.rb -------------------------------------------------------------------------------- /recipes/enforcing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/recipes/enforcing.rb -------------------------------------------------------------------------------- /recipes/permissive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/recipes/permissive.rb -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/release-please-config.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/renovate.json -------------------------------------------------------------------------------- /resources/boolean.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/resources/boolean.rb -------------------------------------------------------------------------------- /resources/fcontext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/resources/fcontext.rb -------------------------------------------------------------------------------- /resources/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/resources/install.rb -------------------------------------------------------------------------------- /resources/login.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/resources/login.rb -------------------------------------------------------------------------------- /resources/module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/resources/module.rb -------------------------------------------------------------------------------- /resources/permissive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/resources/permissive.rb -------------------------------------------------------------------------------- /resources/port.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/resources/port.rb -------------------------------------------------------------------------------- /resources/state.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/resources/state.rb -------------------------------------------------------------------------------- /resources/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/resources/user.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/unit/resources/boolean_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/spec/unit/resources/boolean_spec.rb -------------------------------------------------------------------------------- /spec/unit/resources/fcontext_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/spec/unit/resources/fcontext_spec.rb -------------------------------------------------------------------------------- /spec/unit/resources/install_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/spec/unit/resources/install_spec.rb -------------------------------------------------------------------------------- /spec/unit/resources/login_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/spec/unit/resources/login_spec.rb -------------------------------------------------------------------------------- /spec/unit/resources/module_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/spec/unit/resources/module_spec.rb -------------------------------------------------------------------------------- /spec/unit/resources/permissive_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/spec/unit/resources/permissive_spec.rb -------------------------------------------------------------------------------- /spec/unit/resources/port_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/spec/unit/resources/port_spec.rb -------------------------------------------------------------------------------- /spec/unit/resources/state_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/spec/unit/resources/state_spec.rb -------------------------------------------------------------------------------- /spec/unit/resources/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/spec/unit/resources/user_spec.rb -------------------------------------------------------------------------------- /templates/debian/selinux.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/templates/debian/selinux.erb -------------------------------------------------------------------------------- /templates/default/selinux.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/templates/default/selinux.erb -------------------------------------------------------------------------------- /test/cookbooks/selinux_test/README.md: -------------------------------------------------------------------------------- 1 | # `selinux_module_test` Cookbook 2 | -------------------------------------------------------------------------------- /test/cookbooks/selinux_test/files/default/dirtest_module/dirtest.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/cookbooks/selinux_test/files/default/dirtest_module/dirtest.fc -------------------------------------------------------------------------------- /test/cookbooks/selinux_test/files/default/dirtest_module/dirtest.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/cookbooks/selinux_test/files/default/dirtest_module/dirtest.if -------------------------------------------------------------------------------- /test/cookbooks/selinux_test/files/default/dirtest_module/dirtest.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/cookbooks/selinux_test/files/default/dirtest_module/dirtest.te -------------------------------------------------------------------------------- /test/cookbooks/selinux_test/files/default/kitchenConverge.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/cookbooks/selinux_test/files/default/kitchenConverge.te -------------------------------------------------------------------------------- /test/cookbooks/selinux_test/files/default/kitchenVerify.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/cookbooks/selinux_test/files/default/kitchenVerify.te -------------------------------------------------------------------------------- /test/cookbooks/selinux_test/files/default/moduleLoad.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/cookbooks/selinux_test/files/default/moduleLoad.te -------------------------------------------------------------------------------- /test/cookbooks/selinux_test/files/default/test.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/cookbooks/selinux_test/files/default/test.te -------------------------------------------------------------------------------- /test/cookbooks/selinux_test/files/ubuntu-18.04/kitchenConverge.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/cookbooks/selinux_test/files/ubuntu-18.04/kitchenConverge.te -------------------------------------------------------------------------------- /test/cookbooks/selinux_test/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/cookbooks/selinux_test/metadata.rb -------------------------------------------------------------------------------- /test/cookbooks/selinux_test/recipes/boolean.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/cookbooks/selinux_test/recipes/boolean.rb -------------------------------------------------------------------------------- /test/cookbooks/selinux_test/recipes/debian_enforcing_prepare.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/cookbooks/selinux_test/recipes/debian_enforcing_prepare.rb -------------------------------------------------------------------------------- /test/cookbooks/selinux_test/recipes/enforcing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/cookbooks/selinux_test/recipes/enforcing.rb -------------------------------------------------------------------------------- /test/cookbooks/selinux_test/recipes/fcontext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/cookbooks/selinux_test/recipes/fcontext.rb -------------------------------------------------------------------------------- /test/cookbooks/selinux_test/recipes/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/cookbooks/selinux_test/recipes/install.rb -------------------------------------------------------------------------------- /test/cookbooks/selinux_test/recipes/login.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/cookbooks/selinux_test/recipes/login.rb -------------------------------------------------------------------------------- /test/cookbooks/selinux_test/recipes/module_create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/cookbooks/selinux_test/recipes/module_create.rb -------------------------------------------------------------------------------- /test/cookbooks/selinux_test/recipes/module_remove.rb: -------------------------------------------------------------------------------- 1 | selinux_module 'test' do 2 | action %i(remove delete) 3 | end 4 | -------------------------------------------------------------------------------- /test/cookbooks/selinux_test/recipes/permissive_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/cookbooks/selinux_test/recipes/permissive_resource.rb -------------------------------------------------------------------------------- /test/cookbooks/selinux_test/recipes/port.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/cookbooks/selinux_test/recipes/port.rb -------------------------------------------------------------------------------- /test/cookbooks/selinux_test/recipes/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/cookbooks/selinux_test/recipes/user.rb -------------------------------------------------------------------------------- /test/integration/common/controls/install_control.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/integration/common/controls/install_control.rb -------------------------------------------------------------------------------- /test/integration/common/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/integration/common/inspec.yml -------------------------------------------------------------------------------- /test/integration/disabled/controls/disabled_control.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/integration/disabled/controls/disabled_control.rb -------------------------------------------------------------------------------- /test/integration/disabled/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/integration/disabled/inspec.yml -------------------------------------------------------------------------------- /test/integration/enforcing/controls/boolean_control.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/integration/enforcing/controls/boolean_control.rb -------------------------------------------------------------------------------- /test/integration/enforcing/controls/enforcing_control.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/integration/enforcing/controls/enforcing_control.rb -------------------------------------------------------------------------------- /test/integration/enforcing/controls/module_control.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/integration/enforcing/controls/module_control.rb -------------------------------------------------------------------------------- /test/integration/enforcing/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/integration/enforcing/inspec.yml -------------------------------------------------------------------------------- /test/integration/fcontext/controls/fcontext_control.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/integration/fcontext/controls/fcontext_control.rb -------------------------------------------------------------------------------- /test/integration/fcontext/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/integration/fcontext/inspec.yml -------------------------------------------------------------------------------- /test/integration/permissive/controls/boolean_control.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/integration/permissive/controls/boolean_control.rb -------------------------------------------------------------------------------- /test/integration/permissive/controls/module_control.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/integration/permissive/controls/module_control.rb -------------------------------------------------------------------------------- /test/integration/permissive/controls/permissive_control.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/integration/permissive/controls/permissive_control.rb -------------------------------------------------------------------------------- /test/integration/permissive/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/integration/permissive/inspec.yml -------------------------------------------------------------------------------- /test/integration/permissive_resource/controls/permissive_control.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/integration/permissive_resource/controls/permissive_control.rb -------------------------------------------------------------------------------- /test/integration/permissive_resource/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/integration/permissive_resource/inspec.yml -------------------------------------------------------------------------------- /test/integration/port/controls/port_control.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/integration/port/controls/port_control.rb -------------------------------------------------------------------------------- /test/integration/port/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/integration/port/inspec.yml -------------------------------------------------------------------------------- /test/integration/user_login_mapping/controls/user_login_mapping_control.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/integration/user_login_mapping/controls/user_login_mapping_control.rb -------------------------------------------------------------------------------- /test/integration/user_login_mapping/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/selinux/HEAD/test/integration/user_login_mapping/inspec.yml --------------------------------------------------------------------------------