GitHub puppet-selinux
Puppet Module to manage SELinux on RHEL machines

Repo Checks ( 15 of 22 successfull )
Metadata Valid
No translation
passed
Correct Puppet Version Range
Supported Puppet version range is %{PUPPET_SUPPORT_RANGE}
failed
With Puppet Version Range
Puppet version range is present in requirements in metadata.json
passed
With Operatingsystem Support
No translation
passed
Operatingsystems
No translation
passed
Supports Only Current Redhat
No translation
failed
Supports Latest Redhat
No translation
passed
Supports Only Current Centos
No translation
failed
Supports Latest Centos
No translation
failed
Supports Only Current Fedora
No translation
passed
Supports Latest Fedora
No translation
passed
Supports Only Current Debian
No translation
passed
Supports Latest Debian
No translation
failed
Supports Only Current Amazon
No translation
passed
Supports Latest Amazon
No translation
failed
In Modulesync Repo
Is listed as a module managed using modulesync_config
passed
Synced
Has a .msync.yml file
passed
Latest Modulesync
Has been synchronized with the latest tagged version of modulesync_config
failed
Has Modulesync
Is present in voxpupuli/modulesync_config/managed_modules.yml
passed
Released
Is in modulesync_config and in forge releases.
passed
Valid Sync File
If a (optional) sync file is present, it must not contain a `.travis.yml` entry.
passed
Reference Dot Md
The repository has a REFERENCE.md. It needs to be generated / puppet-strings documentation is missing.
passed

Open Pull Requests

WIP: Add selinux_clear_context_cache type
Run acceptance tests in CI
Optimize fcontext parsing methods

This uses filtermap (introduced in Ruby 2.7) to avoid constructing an array by pushing values. It also uses startwith to avoid a regex lookup.

Untested now, and since there aren't any acceptance tests running now I'm a bit hesitant on merging this.

Open PR in GitHub
Drop Puppet 5 support
backwards-incompatible
modulesync 5.3.0
modulesync
add missing dep on puppetlabs/selinux_core

This module is using the selmodule resource type provided by
puppetlabs/selinux_core.

Open PR in GitHub
modulesync 7.4.0
modulesync

modulesync 7.4.0

Open PR in GitHub
Remove legacy top-scope syntax
selinux_login provider typo & title mismatch

Pull Request (PR) description

selinux::login fails to run due to two bugs in the selinux_login provider.

Typo

Is presumably a typo in each_values

Inconsistency in the titles between resources and instances

This logic used to use the title of #{selinux_login_name}_#{selinux_user} but has been changed to just use the selinux_login_name (340c17e345d09d64289d35d4b1a18d533dfd3b40).

When we check resource = resources[provider.name] the inconsistency means if the resource already exists we get the following error.


Warning: Puppet::Type::Selinux_login::ProviderSemanage: Selinux_login['user']: title does not match its login ('user_staff_u' != 'user')
Error: Could not prefetch selinux_login provider 'semanage': undefined method `provider=' for nil:NilClass

Open PR in GitHub